https://github.com/deepakramani/terraform-gs
https://github.com/deepakramani/terraform-gs
Last synced: 2 months ago
JSON representation
- Host: GitHub
- URL: https://github.com/deepakramani/terraform-gs
- Owner: deepakramani
- Created: 2022-06-20T21:31:18.000Z (almost 3 years ago)
- Default Branch: main
- Last Pushed: 2022-06-20T21:37:57.000Z (almost 3 years ago)
- Last Synced: 2024-11-26T15:50:37.481Z (6 months ago)
- Language: HCL
- Size: 1.95 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Getting started with Terraform
Contains four files.
1. main.tf - contains all the necessary code to apply changes
2. variables.tf - contains all the variables that are referenced
3. providers.tf - contains all the cloud providers
4. output.tf - contains outputsTo execute,
- run `terraform init` to initialise and download the provider's configurations
- run `terraform plan` to verify changes
- run `terraform apply` to apply changes.