gkdevops /
terraform-code
This repository contains code to learn terraform automation through HCL
45/100 healthLoading repository data…
inderpal2406 / repository
This repository contains practice examples from books on Terraform written by James Turnbull, Yevgeniy Brikman. Also this repository contains practice examples from Udemy course on Terraform.
A transparent discovery signal based on current public GitHub metadata.
This score does not audit code, security, maintainers, documentation quality, or suitability. Verify the repository and its current documentation before adoption.
This repository contains practice examples from books on Terraform written by James Turnbull, Yevgeniy Brikman. Also this repository contains practice examples from Udemy course on Terraform.
Terraform is available as a binary. It can be downloaded and installed by following below steps:
wget https://releases.hashicorp.com/terraform/0.12.9/terraform_0.12.9_linux_amd64.zip
Before execting above command, please check which is the atest terraform version available. We can also download other versions from the above site.unzip terraform_0.12.9_linux_amd64.zipsudo chown root:root terraformmv terraform /usr/local/bin/terraform --version OR terraform versionTo enable terraform to communicate to AWS cloud platform, we configure AWS secret credentials. Here is the link
terraform init command. This directory contains all backend plugins used by terraform to communicate to specified provider (AWS/Azure/etc). If we change any provider configuration, then we need to execute terraform init again to update .terraform files to connect successfully.*.dot file which may contain confidential information. This file is generated to view graphical images of our infra.*.plan file which may contain confidential information. This file is generated using terraform plan command to output plans before implementing changes using terraform apply.terraform.tfstate and terraform.tfstate.backup files to exclude state files.*.pub files to exclude ssh public keys.terraform.tfvars file to exclude secret variables.terraform graph > exapmle.dotgraphviz te get the dot binary. Here is the guide.
dot example.dot -Tsvg -o example.svgeog example.svgTo know AMI details for the AWS EC2 instance in a particular region, we can refer this website.
Selected from shared topics, language and repository description—not editorial ratings.
gkdevops /
This repository contains code to learn terraform automation through HCL
45/100 healthjabercrombia /
This repository contains Terraform infrastructure for managing Cloudflare DNS records that route a domain to a Vercel-hosted application. It centralizes DNS configuration as code to ensure consistent, version-controlled deployments with no manual Cloudflare changes.
51/100 healthinderpal2406 /
This repository contains configuration files for a basic VPC module, which can be imported into other terraform configuration files.
deshpandead-spring2021 /
This repository contains terraform code for setting up infrastructure configurations. Terraform is a code tool from HahiCorp. It is a tool for building, changing and managing infrastructure in a safe, repeatable way. Developers and Infrastructure teams can use Terraform to mange environments with a configuration language called the HashiCorp Configuration Language (HCL) for human readable, automated deployments.
27/100 health