You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
If you change the provider URL (for example maybe you migrated the provider URL or are moving from one provider to another), it forces the re-creation of all the identity pools using that identity provider. However, f you make this change via the Confluent Cloud console, it doesn't force this update. As an example, changing my_provider's JWKS and/or issuer URL(s) will re-create my_pool.
resource"confluent_identity_provider""my_provider" {
display_name="My OIDC Provider"description="OIDC provider for workload authentication"issuer="https://example.com"jwks_uri="https://example.com/jwks"
}
resource"confluent_identity_pool""my_pool" {
identity_provider {
id=resource.my_provider.id
}
display_name="My Identity Pool"description="Identity pool for workload authentication"identity_claim="claims.sub"filter="claims.aud==\"confluent.cloud\"&&claims.sub == \"spiffe://example.com/ns/my-namespace/sa/my-service-account\""
}
returndiag.Errorf("error updating Identity Provider %q: only %q, %q attributes can be updated for Identity Provider", d.Id(), paramDisplayName, paramDescription)
returndiag.Errorf("error updating Identity Pool %q: only %q, %q, %q, %q attributes can be updated for Identity Pool", d.Id(), paramDisplayName, paramDescription, paramIdentityClaim, paramFilter)
}
The text was updated successfully, but these errors were encountered:
If you change the provider URL (for example maybe you migrated the provider URL or are moving from one provider to another), it forces the re-creation of all the identity pools using that identity provider. However, f you make this change via the Confluent Cloud console, it doesn't force this update. As an example, changing
my_provider
's JWKS and/or issuer URL(s) will re-createmy_pool
.This is because of
terraform-provider-confluent/internal/provider/resource_identity_provider.go
Lines 75 to 77 in bef388c
and
terraform-provider-confluent/internal/provider/resource_identity_pool.go
Lines 76 to 78 in bef388c
The text was updated successfully, but these errors were encountered: