The Wayback Machine - https://web.archive.org/web/20210120114208/https://github.com/topics/terraform
Skip to content
#

Terraform

terraform logo

Terraform can manage existing and popular service providers, such as AWS, as well as custom in-house solutions.

It uses configuration files to describe the components necessary to run a single application or your entire datacenter.

It generates an execution plan describing what will happen to reach the desired state, and afterwards executes it to build the desired infrastructure. As the configuration changes, Terraform is able to determine the changes and create incremental execution plans which can be applied.

The infrastructure Terraform can manage includes low-level components such as compute instances, storage, and networking, as well as high-level components such as DNS (Domain Name Service) entries, SaaS (Software as a Service) features.

Here are 8,109 public repositories matching this topic...

devops-exercises
surister
surister commented Jan 21, 2020

This is a reminder for me or a task if anyone wants :P

imagen

Basically, The last two questions aren't really regex's questions.

To do:

  • Move said questions to correct place.
  • Add new regex questions (Python related!)?
  • Maybe add a new ## Regex section, as it is a valuable skill
AndLvovSky
AndLvovSky commented Jan 19, 2021

Following example in the documentation:

resource "aws_db_proxy_target" "example" {
  db_instance_identifier = aws_db_instance.example.id
  db_proxy_name          = aws_db_proxy.example.db_proxy_name
  target_group_name      = aws_db_proxy_default_target_group.example.name
}

fails with an exception:

Error: Unsupported attribute

  on ../modules/rds/main.tf line 34, in resour
tomcart90
tomcart90 commented Jan 7, 2021

I'm currently working on a project where I have a number of different modules which make up our web application stack. We have many of these stacks defined, all of which pull from a set of top-level .hcl terragrunt files (one for each module). Some of these modules are optional for a given stack, in my case for example whether or not to enable AzureAD single sign-on is an optional, and is defined

tfsec
lboynton
lboynton commented Dec 27, 2020

Describe the bug
The RDS checks in tfsec do not detect issues in usage of the RDS module available at: https://registry.terraform.io/modules/terraform-aws-modules/rds/aws/latest

To Reproduce
Steps to reproduce the behaviour:

  1. Create the following terraform file:
module "db" {
  source = "terraform-aws-modules/rds/aws"
  version = "~> 2.0"

  identifier = "demodb"
terraform-cdk

Created by Mitchell Hashimoto, HashiCorp

Released July 28, 2014

Latest release 14 days ago

Repository
hashicorp/terraform
Website
www.terraform.io
Wikipedia
Wikipedia

Related Topics

hashicorp infrastructure infrastructure-as-code
You can’t perform that action at this time.