Created
November 24, 2022 16:34
-
-
Save arslanbekov/3f9d0d9a9ebf377b023537dc94a48ba5 to your computer and use it in GitHub Desktop.
This file contains hidden or 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
resource "google_iam_workload_identity_pool" "github_actions" { | |
provider = google-beta | |
project = "my-gcp-project" | |
workload_identity_pool_id = "github-actions" | |
display_name = "GitHub Actions pool" | |
description = "Workload Identity Pool managed by Terraform" | |
disabled = false | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment