Skip to content

Commit 1525ba5

Browse files
Fix issuer uri (#7184) (#5148)
* promote resources to GA * fix issuer uri Signed-off-by: Modular Magician <[email protected]>
1 parent 046dc68 commit 1525ba5

File tree

4 files changed

+10
-7
lines changed

4 files changed

+10
-7
lines changed

.changelog/7184.txt

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
```release-note:none
2+
Removed google as an IdP in tests
3+
```

google-beta/resource_iam_workforce_pool_provider_generated_test.go

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -165,7 +165,7 @@ resource "google_iam_workforce_pool_provider" "example" {
165165
"google.subject" = "assertion.sub"
166166
}
167167
oidc {
168-
issuer_uri = "https://accounts.google.com"
168+
issuer_uri = "https://accounts.thirdparty.com"
169169
client_id = "client-id"
170170
}
171171
}
@@ -214,7 +214,7 @@ resource "google_iam_workforce_pool_provider" "example" {
214214
"google.subject" = "assertion.sub"
215215
}
216216
oidc {
217-
issuer_uri = "https://accounts.google.com"
217+
issuer_uri = "https://accounts.thirdparty.com"
218218
client_id = "client-id"
219219
}
220220
display_name = "Display name"

google-beta/resource_iam_workforce_pool_workforce_pool_provider_test.go

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -147,7 +147,7 @@ resource "google_iam_workforce_pool_provider" "my_provider" {
147147
"google.subject" = "assertion.sub"
148148
}
149149
oidc {
150-
issuer_uri = "https://accounts.google.com"
150+
issuer_uri = "https://accounts.thirdparty.com"
151151
client_id = "client-id"
152152
}
153153
display_name = "Display name"
@@ -174,7 +174,7 @@ resource "google_iam_workforce_pool_provider" "my_provider" {
174174
"google.subject" = "false"
175175
}
176176
oidc {
177-
issuer_uri = "https://test.google.com"
177+
issuer_uri = "https://test.thirdparty.com"
178178
client_id = "new-client-id"
179179
}
180180
display_name = "New Display name"
@@ -201,7 +201,7 @@ resource "google_iam_workforce_pool_provider" "my_provider" {
201201
"google.subject" = "assertion.sub"
202202
}
203203
oidc {
204-
issuer_uri = "https://accounts.google.com"
204+
issuer_uri = "https://accounts.thirdparty.com"
205205
client_id = "client-id"
206206
}
207207
}

website/docs/r/iam_workforce_pool_provider.html.markdown

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -97,7 +97,7 @@ resource "google_iam_workforce_pool_provider" "example" {
9797
"google.subject" = "assertion.sub"
9898
}
9999
oidc {
100-
issuer_uri = "https://accounts.google.com"
100+
issuer_uri = "https://accounts.thirdparty.com"
101101
client_id = "client-id"
102102
}
103103
}
@@ -120,7 +120,7 @@ resource "google_iam_workforce_pool_provider" "example" {
120120
"google.subject" = "assertion.sub"
121121
}
122122
oidc {
123-
issuer_uri = "https://accounts.google.com"
123+
issuer_uri = "https://accounts.thirdparty.com"
124124
client_id = "client-id"
125125
}
126126
display_name = "Display name"

0 commit comments

Comments
 (0)