A tool from Hashicorp used for defining infrastructure as code.
Is there a way of abstracting the provider for all the modules defined in a project. for example, I have …
terraform terraform-provider-awsCode Consider a terraform module: module "blah-asg" { source = "asg" asg_max_size = 1 asg_min_size = "${var.min_blah}" ... } My problem …
terraformI am getting the following error when running terraform: * aws_iam_role_policy.rds_policy: Error putting IAM role policy …
amazon-web-services terraformI'm using Terraform to automate provision of Cognito Identity Pools in AWS. The AWS provider doesn't support Cognito yet so …
amazon-web-services aws-cli amazon-cognito terraformI'm using the HTTP data source to retrieve data from an internal service. The service returns JSON data. I can't …
terraformIt takes a long time to run terraform and wait. So I would like to run it to exclude rds …
terraformHow do you check if a terraform string contains another string? For example, I want to treat terraform workspaces with "…
terraformI have a Terraform script using modules. I want to create multiple resources so I'm using the for_each method. …
terraform terraform0.12+I need to execute a Terraform template to provision infrastructure for an AWS account which I can access by assuming …
amazon-web-services terraform aws-codepipeline terraform-provider-awsI have this code in terraform: data "archive_file" "lambdazip" { type = "zip" output_path = "lambda_launcher.zip" source_dir = "lambda/…
terraform terraform-template-file