skip to Main Content

Make null resource to wait on aws_route53_record in Terraform – CentOS

resource "aws_route53_record" "record" { zone_id = data.aws_route53_zone.selected.zone_id name = "${var.sfs_instance_name}.example.com" type = "A" ttl = "60" records = ["${aws_eip.sfs.public_ip}"] } resource "null_resource" "sfs-ssl-certs" { connection { type = "ssh" user = "centos" host = aws_eip.sfs.public_ip private_key = file("../keys/${var.sfs_instance_name}.pem") } provisioner…

VIEW QUESTION

Terraform Error: "replication_group_id": conflicts with engine_version. ( redis )

I'm trying to create an aws_elasticache_replication_group using Redis resource "aws_elasticache_cluster" "encryption-at-rest" { count = 1 cluster_id = "${var.namespace}-${var.environment}-encryption-at-rest" engine = "redis" engine_version = var.engine_version node_type = var.node_type num_cache_nodes = 1 port = var.redis_port #az_mode = var.az_mode replication_group_id = aws_elasticache_replication_group.elasticache_replication_group.id security_group_ids…

VIEW QUESTION
Back To Top
Search