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
@@ -56,14 +56,23 @@ This guide walks through deploying AWS accounts using `atmos` workflows. Before
56
56
57
57
The AWS Organization was created manually as part of the [Prepare AWS Organization](/layers/accounts/prepare-aws-organization/) guide. Now we need to import this existing organization into Terraform so it can be managed as infrastructure-as-code.
58
58
59
-
Run the organization workflow, which will import the existing AWS Organization into Terraform state:
59
+
Import the existing AWS Organization into Terraform state using the following command. Replace `ORG_ID` with your AWS Organization ID (e.g., `o-abc123def4`):
You can find your Organization ID in the AWS Console under **AWS Organizations** → **Settings**, or by running:
67
+
```bash
68
+
aws organizations describe-organization --query 'Organization.Id' --output text
69
+
```
70
+
:::
62
71
63
-
This workflow runs `terraform import` to bring the existing AWS Organization under Terraform management. After this step, all organization-level changes will be managed through Atmos and Terraform.
72
+
This command runs `terraform import` to bring the existing AWS Organization under Terraform management. After this step, all organization-level changes will be managed through Atmos and Terraform.
64
73
65
74
:::tip Verify Import
66
-
After the workflow completes, verify the organization was imported successfully:
75
+
After the import completes, verify the organization was imported successfully:
0 commit comments