Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/romicofre/terraform_exercises
Studying terraform
https://github.com/romicofre/terraform_exercises
Last synced: 18 days ago
JSON representation
Studying terraform
- Host: GitHub
- URL: https://github.com/romicofre/terraform_exercises
- Owner: romicofre
- Created: 2021-04-13T21:10:46.000Z (over 3 years ago)
- Default Branch: main
- Last Pushed: 2023-07-02T21:09:43.000Z (over 1 year ago)
- Last Synced: 2024-08-01T00:44:02.928Z (3 months ago)
- Language: HCL
- Size: 11.7 KB
- Stars: 1
- Watchers: 2
- Forks: 1
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Terrafor excercises
Studying terraform## Using terraform
In the same folder as the main.tf or terraform file. By example `aws_examples/billing`, run:
```shell
terraform init
terraform plan
terraform apply
```To "stop", delete architecture:
```shell
terraform destroy
```