skip to Main Content

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

ERROR: The Compose file './docker-compose.yml' is invalid because: services.jenkins.networks contains an invalid type – CentOS

ERROR: The Compose file './docker-compose.yml' is invalid because: services.jenkins.networks contains an invalid type, it should be an array, or an object version: '3' services: jenkins: container_name: jenkins image: jenkins ports: - "8080:8080" volumes: - "$PWD/jenkins_home:/var/jenkins_home" networks: -net networks: net: Docker-Compose…

VIEW QUESTION
Back To Top
Search