Skip to content

Commit d0a7ec0

Browse files
committed
Fix tfproviderdocs "import section: all code blocks of type 'terraform' should be before code blocks of type 'console'".
1 parent 5452303 commit d0a7ec0

File tree

1 file changed

+11
-11
lines changed

1 file changed

+11
-11
lines changed

website/docs/r/iam_outbound_web_identity_federation.html.markdown

Lines changed: 11 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -30,6 +30,17 @@ This resource exports the following attributes in addition to the arguments abov
3030

3131
## Import
3232

33+
In Terraform v1.12.0 and later, the [`import` block](https://developer.hashicorp.com/terraform/language/import) can be used with the `identity` attribute. For example:
34+
35+
```terraform
36+
import {
37+
to = aws_iam_outbound_web_identity_federation.example
38+
identity = {}
39+
}
40+
41+
resource "aws_iam_outbound_web_identity_federation" "example" {}
42+
```
43+
3344
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 AWS account ID. For example:
3445

3546
```terraform
@@ -44,14 +55,3 @@ Using `terraform import`, import IAM Outbound Web Identity Federation resources
4455
```console
4556
% terraform import aws_iam_outbound_web_identity_federation.example 123456789012
4657
```
47-
48-
In Terraform v1.12.0 and later, the [`import` block](https://developer.hashicorp.com/terraform/language/import) can be used with the `identity` attribute. For example:
49-
50-
```terraform
51-
import {
52-
to = aws_iam_outbound_web_identity_federation.example
53-
identity = {}
54-
}
55-
56-
resource "aws_iam_outbound_web_identity_federation" "example" {}
57-
```

0 commit comments

Comments
 (0)