diff --git a/internal/backend/remote-state/oci/backend.go b/internal/backend/remote-state/oci/backend.go index 26c6a0cc3aef..41a0fa973a9e 100644 --- a/internal/backend/remote-state/oci/backend.go +++ b/internal/backend/remote-state/oci/backend.go @@ -159,7 +159,7 @@ func (b *Backend) PrepareConfig(obj cty.Value) (cty.Value, tfdiags.Diagnostics) if ok && len(authVal.AsString()) > 0 { switch strings.ToLower(authVal.AsString()) { - case strings.ToLower(AuthAPIKeySetting): + case strings.ToLower(AuthAPIKeySetting), strings.ToLower(AuthOKEWorkloadIdentity): //Nothing to do return obj, diags case strings.ToLower(AuthInstancePrincipalSetting), strings.ToLower(AuthInstancePrincipalWithCertsSetting), strings.ToLower(ResourcePrincipal), strings.ToLower(AuthSecurityToken):