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 68ea0a7 commit f6bed8dCopy full SHA for f6bed8d
main.tf
@@ -70,14 +70,15 @@ resource "google_iam_workload_identity_pool_provider" "provider" {
70
71
attribute_mapping = {
72
"google.subject" = "assertion.sub"
73
+ "attribute.sub" = "assertion.sub"
74
"attribute.user_login" = "assertion.user_login"
75
"attribute.repository" = "assertion.project_path"
- "attribute.branch" = "assertion.ref"
76
+ "attribute.ref" = "assertion.ref"
77
}
78
oidc {
79
allowed_audiences = [var.allowed_audiences]
80
issuer_uri = var.issuer_uri
81
82
83
depends_on = [google_iam_workload_identity_pool.pool]
-}
84
+}
0 commit comments