File tree Expand file tree Collapse file tree 1 file changed +7
-12
lines changed Expand file tree Collapse file tree 1 file changed +7
-12
lines changed Original file line number Diff line number Diff line change @@ -63,26 +63,21 @@ For an overview of the module structure, refer to [generated terraform docs](./T
63
63
EOF
64
64
` ` `
65
65
66
- 2. Create a directory and navigate into it.
67
-
68
- ` ` ` sh
69
- mkdir terraform-aws-meshplatform
70
- cd terraform-aws-meshplatform
71
- ` ` `
72
-
73
- 3. Create a ` main.tf` and an ` outputs.tf` files in the created directory that references this module
74
-
75
- > See [Example Usages](# example-usages)
66
+ 2. Download the example ` main.tf` and ` outputs.tf` files.
76
67
77
68
` ` ` sh
69
+ # Downloads main.tf and outputs.tf files into ~/terraform-aws-meshplatform
78
70
wget https://raw.githubusercontent.com/meshcloud/terraform-aws-meshplatform/main/examples/basic-aws-integration/main.tf -O ~/terraform-aws-meshplatform/main.tf
79
-
80
71
wget https://raw.githubusercontent.com/meshcloud/terraform-aws-meshplatform/main/examples/basic-aws-integration/outputs.tf -O ~/terraform-aws-meshplatform/outputs.tf
81
72
` ` `
82
73
83
- 4. Run
74
+ 3. Open ` ~/terraform-aws-meshplatform/main.tf` with a text editor. Modify the module variables and Terraform state backend settings in the file.
75
+
76
+ 4. Execute the module.
84
77
85
78
` ` ` sh
79
+ # Changes into ~/terraform-aws-meshplatform and applies terraform
80
+ cd ~/terraform-aws-meshplatform
86
81
terraform init
87
82
terraform apply
88
83
` ` `
You can’t perform that action at this time.
0 commit comments