After using snowflake_tag_association to set tag on account, subsequent terraform plan/apply fail with "error listing tag associations". #6776
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# If someone with write access comments "/ok-to-test" on a pull request, emit repository_dispatch event | |
name: ok-to-test | |
on: | |
issue_comment: | |
types: [created] | |
jobs: | |
ok-to-test: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Generate token | |
id: generate_token | |
uses: chanzuckerberg/[email protected] | |
with: | |
app_id: ${{ secrets.OK_TO_TEST_APP_ID }} | |
private_key: ${{ secrets.OK_TO_TEST_PRIVATE_KEY }} | |
- name: Slash Command Dispatch | |
uses: peter-evans/slash-command-dispatch@v3 | |
env: | |
TOKEN: ${{ steps.generate_token.outputs.token }} | |
ACTIONS_STEP_DEBUG: true | |
with: | |
token: ${{ env.TOKEN }} # GitHub App installation access token | |
reaction-token: ${{ secrets.GITHUB_TOKEN }} | |
issue-type: pull-request | |
commands: ok-to-test | |
permission: write |