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
Copy file name to clipboardExpand all lines: docs/Infrastructure_Guide/terraform.md
+3-3Lines changed: 3 additions & 3 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -31,17 +31,17 @@ Terraformer acts as a "reverse Terraform" tool where it can read from created re
31
31
Although the output can sometimes be a bit verbose, it's an easy way to capture everything to create reproducible builds.
32
32
33
33
### Profile
34
-
Before installing Terraformer, a profile from AWS will need to be configured under `~/.aws/credentials` which is `TOML`like file.
34
+
Before installing Terraformer, a profile from AWS will need to be configured under `~/.aws/credentials` which is an INI-like file (AWS credentials format).
35
35
36
36
Configure the `terraform-user` profile from [1. AWS](aws.md#iam) to look like this:
37
37
38
-
```toml
38
+
```ini
39
39
[terraform-user]
40
40
aws_access_key_id = <ACCESS_KEY_ID>
41
41
aws_secret_access_key = <SECRET_ACCESS_KEY>
42
42
```
43
43
44
-
To retrieve these options, head to IAM > Users > teraform-user > Security Credentials tab
44
+
To retrieve these options, head to IAM > Users > terraform-user > Security Credentials tab
0 commit comments