We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 242e196 commit 9ad272bCopy full SHA for 9ad272b
README.md
@@ -134,14 +134,11 @@ This step demonstrates how to use the `stackql-assert` action to run a complianc
134
uses: stackql/stackql-assert@v1.3.1
135
with:
136
test_query: |
137
- SELECT
138
- name,
139
- labels,
140
- metadata
141
- FROM
142
- gcp_compute_instance
143
- WHERE
144
- metadata.items[0].value = 'test'
+ SELECT name
+ , JSON_EXTRACT(iamConfiguration, '$.publicAccessPrevention') as publicAccessPrevention
+ FROM google.storage.buckets
+ WHERE project = 'stackql-demo-2'
+ AND publicAccessPrevention = 'inherited';
145
expected_rows: 0
146
env:
147
GOOGLE_CREDENTIALS: ${{ secrets.GOOGLE_CREDENTIALS }}
0 commit comments