python (65.1k questions)
javascript (44.2k questions)
reactjs (22.7k questions)
java (20.8k questions)
c# (17.4k questions)
html (16.3k questions)
r (13.7k questions)
android (12.9k questions)
Terraform conditional dynamic ebs_block_device while deploying EC2 instances
I am trying to create multiple EC2 instances with a conditional ebs_block_device . Here is input object:
"Ec2Instances" : [
{
"AmiId" : "",
"VpcId" ...
ratr
Votes: 0
Answers: 1
"WaitForState exceeded refresh grace period" while updating aws_route53_record
So I am trying to get gitlab CI set up for my terraform projects. I am running in to an issue specifically when the terraform plan is happening in a pipeline.
The pipeline gets to refreshing an aws_ro...
amcallister
Votes: 0
Answers: 0
Prevent a Terraform resource with for_each from being created depending on a condition
I'm using the following resources to create a DynamoDB table with items from a JSON file of objects.
module "dynamodb_label" {
source = "./modules/labels"
enabled = var.ENABLE...
Mert Alnuaimi
Votes: 0
Answers: 3
How to move terraform resource in terraform apply
I have custom resource defined in my terraform module:
resource "aws_alb_target_group" "whatever"
{
....
}
Turns out whatever is not good name, and I need to update it.
Classi...
Shadow
Votes: 0
Answers: 2