We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Terraform apply always shows this:
~ module.es.aws_elasticsearch_domain.es_vpc advanced_options.rest.action.multi.allow_explicit_index: "true" => "" ebs_options.0.volume_type: "" => "gp2"
Module definition:
module "es" { source = "github.com/terraform-community-modules/tf_aws_elasticsearch?ref=v0.8.0" domain_prefix = "${var.domain_prefix}" domain_name = "${var.domain_name}" vpc_options = { security_group_ids = ["${data.terraform_remote_state.region_state.xxx}"] subnet_ids = [ "${data.terraform_remote_state.region_state.private_subnets.0}", "${data.terraform_remote_state.region_state.private_subnets.1}" ] } instance_count = 12 instance_type = "i3.2xlarge.elasticsearch" dedicated_master_type = "i3.xlarge.elasticsearch" es_zone_awareness = true create_iam_service_linked_role = false management_iam_roles = [ "arn:aws:iam::999999:role/xxx-xxxx-logs" ] }
Am I missing something?
The text was updated successfully, but these errors were encountered:
Some details here: hashicorp/terraform-provider-aws#576
Sorry, something went wrong.
Successfully merging a pull request may close this issue.
Terraform apply always shows this:
Module definition:
Am I missing something?
The text was updated successfully, but these errors were encountered: