Skip to content

Commit 67a1183

Browse files
authored
doc: Removes preview note for OIDC Workforce (#2344)
* remove preview note * add changelog note OIDC in GA
1 parent 540d492 commit 67a1183

File tree

4 files changed

+22
-6
lines changed

4 files changed

+22
-6
lines changed

.changelog/2344.txt

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
```release-note:note
2+
resource/mongodbatlas_federated_settings_identity_provider: OIDC Workforce and Workload are now in GA
3+
```

website/docs/d/federated_settings_identity_provider.html.markdown

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -10,8 +10,6 @@ description: |-
1010

1111
`mongodbatlas_federated_settings_identity_provider` provides a federated settings identity provider data source. Atlas federated settings identity provider provides federated settings outputs for the configured identity provider.
1212

13-
-> **NOTE:** OIDC Workforce IdP is currently in preview. To learn more about OIDC and existing limitations see the [OIDC Authentication Documentation](https://www.mongodb.com/docs/atlas/security-oidc/)
14-
1513
## Example Usage
1614

1715
```terraform

website/docs/d/federated_settings_identity_providers.html.markdown

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -10,8 +10,6 @@ description: |-
1010

1111
`mongodbatlas_federated_settings_identity_providers` provides an Federated Settings Identity Providers datasource. Atlas Cloud Federated Settings Identity Providers provides federated settings outputs for the configured Identity Providers.
1212

13-
-> **NOTE:** OIDC Workforce IdP is currently in preview. To learn more about OIDC and existing limitations see the [OIDC Authentication Documentation](https://www.mongodb.com/docs/atlas/security-oidc/).
14-
1513
## Example Usage
1614

1715
```terraform

website/docs/r/federated_settings_identity_provider.html.markdown

Lines changed: 19 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -10,10 +10,11 @@ description: |-
1010

1111
`mongodbatlas_federated_settings_identity_provider` provides an Atlas federated settings identity provider resource provides a subset of settings to be maintained post import of the existing resource.
1212

13-
-> **NOTE:** OIDC Workforce IdP is currently in preview. To learn more about OIDC and existing limitations see the [OIDC Authentication Documentation](https://www.mongodb.com/docs/atlas/security-oidc/).
1413
## Example Usage
1514

16-
~> **IMPORTANT** You **MUST** import this resource before you can manage it with this provider.
15+
~> **IMPORTANT** If you want to use a SAML Identity Provider, you **MUST** import this resource before you can manage it with this provider.
16+
17+
SAML IdP:
1718

1819
```terraform
1920
resource "mongodbatlas_federated_settings_identity_provider" "identity_provider" {
@@ -29,6 +30,22 @@ resource "mongodbatlas_federated_settings_identity_provider" "identity_provider"
2930
}
3031
```
3132

33+
OIDC IdP:
34+
35+
```
36+
resource "mongodbatlas_federated_settings_identity_provider" "oidc" {
37+
federation_settings_id = data.mongodbatlas_federated_settings.this.id
38+
audience = var.token_audience
39+
authorization_type = "USER"
40+
description = "oidc"
41+
issuer_uri = "https://sts.windows.net/${azurerm_user_assigned_identity.this.tenant_id}/"
42+
idp_type = "WORKLOAD"
43+
name = "OIDC-for-azure"
44+
protocol = "OIDC"
45+
user_claim = "sub"
46+
}
47+
```
48+
3249
## Argument Reference
3350

3451
* `federation_settings_id` - (Required) Unique 24-hexadecimal digit string that identifies the federated authentication configuration.

0 commit comments

Comments
 (0)