Skip to content
New issue

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

Changes applied on every terraform run #24

Open
max-rocket-internet opened this issue Apr 11, 2019 · 1 comment
Open

Changes applied on every terraform run #24

max-rocket-internet opened this issue Apr 11, 2019 · 1 comment

Comments

@max-rocket-internet
Copy link

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?

@fantapop
Copy link

Some details here: hashicorp/terraform-provider-aws#576

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging a pull request may close this issue.

2 participants