tf_aws_elasticsearch icon indicating copy to clipboard operation
tf_aws_elasticsearch copied to clipboard

'aws_elasticsearch_domain.es_vpc' not found

Open FernandoMiguel opened this issue 6 years ago • 1 comments

* module.elasticsearch.data.aws_iam_policy_document.es_vpc_management_access: Resource 'aws_elasticsearch_domain.es_vpc' not found for variable 'aws_elasticsearch_domain.es_vpc.arn'

module "elasticsearch" {
  source      = "github.com/terraform-community-modules/tf_aws_elasticsearch?ref=v0.1.0"
  domain_name = "elasticsearch-domain-${random_pet.random_pet_dev.id}"

  vpc_options = {
    security_group_ids = ["${module.app_elasticsearch_sg.this_security_group_id}"]
    subnet_ids = ["${module.vpc.private_subnets}"]
  }

FernandoMiguel avatar Nov 28 '18 12:11 FernandoMiguel

Terraform v0.11.10

  • provider.aws: version = "~> 1.49"
  • provider.random: version = "~> 2.0"

FernandoMiguel avatar Nov 28 '18 13:11 FernandoMiguel