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
*`enabled` - (Optional) Whether or not Outbound Web Identity Federation is enabled. Valid values are `true` or `false`. Defaults to `true`.
24
26
25
27
## Attribute Reference
26
28
27
29
This resource exports the following attributes in addition to the arguments above:
28
30
31
+
*`id` - Unique identifier for the account registration. Since registration is applied globaly, this will be the Account ID.
29
32
*`issuer_identifier` - A unique issuer URL for your AWS account that hosts the OpenID Connect (OIDC) discovery endpoints.
30
-
*`jwt_vending_enabled` - Indicates whether outbound identity federation is currently enabled for your AWS account.
33
+
31
34
32
35
## Import
33
36
34
-
You cannot import this resource.
37
+
In Terraform v1.5.0 and later, use an [`import` block](https://developer.hashicorp.com/terraform/language/import) to import IAM Outbound Web Identity Federation resources using the `id`. For example:
38
+
39
+
```terraform
40
+
import {
41
+
to = aws_iam_outbound_web_identity_federation.example
42
+
id = "123456789012"
43
+
}
44
+
```
45
+
46
+
Using `terraform import`, import IAM Outbound Web Identity Federation resources using the `id`. For example:
35
47
36
-
~> **NOTE:** This resource will adopt the IAM Outbound Web Identity Federation setting in the account if this setting is already enabled.
0 commit comments