terraform-iam: update README
Jörg Thalheim committed
Aug 18, 2024 at 07:30 UTC
311bb2fd6a711c22a1f98bed058dc24d3ffee4ae
1 file changed
+8
-8
terraform-iam/README.md
+8
-8
@@ -2,7 +2,7 @@
2
3
This module is for superadmins in the team.
4
5
-This terraform root module manages:
5
+This tofu root module manages:
6
* IAM roles
7
8
## Setup
@@ -19,22 +19,22 @@ The first time the following command has to be run to initialize the state
19
file and plugins:
20
21
```sh
22
-terraform init
22
+tofu init
23
```
24
25
Then run the following command to diff the changes and then apply if approved:
26
27
```sh
28
-terraform apply
28
+tofu apply
29
```
30
31
-## Terraform workflow
31
+## Tofu workflow
32
33
-Write the Terraform code and test the changes using `terraform validate`.
33
+Write the Tofu code and test the changes using `tofu validate`.
34
35
-Before committing run `terraform fmt`.
35
+Before committing run `tofu fmt`.
36
37
Once the code is ready to be deployed, create a new PR with the attached
38
-output of `terraform plan`.
38
+output of `tofu plan`.
39
40
-Once the PR is merged, run `terraform apply` to apply the changes.
40
+Once the PR is merged, run `tofu apply` to apply the changes.