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

shadow diff mismatch (Experimental feature failure) #9932

Closed
adamdecaf opened this issue Nov 7, 2016 · 2 comments
Closed

shadow diff mismatch (Experimental feature failure) #9932

adamdecaf opened this issue Nov 7, 2016 · 2 comments

Comments

@adamdecaf
Copy link
Contributor

Terraform Version

Terraform v0.7.9

Affected Resource(s)

Please list the resources as a list, for example:

  • aws_instance
  • aws_route53_record

Terraform Configuration Files

I've setup two differnet modules then to pull in the aws and aws-keypair modules:

{
  "module": {
    "us-east-1-keypair": {
      "env": "${var.env}",
      "region": "${var.region}",
      "source": "github.com/Banno/env-setup//modules/aws-keypair?ref=16a6be0a651bb13b2603afb6f9f92e8d1ae45d40"
    },
    "zone": {
      "env": "${var.env}",
      "region": "${var.region}",
      "source": "github.com/Banno/env-setup//modules/aws-dns-zone?ref=16a6be0a651bb13b2603afb6f9f92e8d1ae45d40",
      "tld": "${var.tld}"
    }
  },
  "output": {
    "key_pair_private_file": {
      "value": "${module.us-east-1-keypair.key_pair_private_file}"
    },
    "zone_id": {
      "value": "${module.zone.zone_id}"
    }
  },
  "variable": {
    "env": {
      "default": "adam"
    },
    "region": {
      "default": "us-east-1"
    },
    "tld": {
      "default": "banno-internal.com"
    }
  }
}

Then an aws-machine instance:

{
  "module": {
    "east1-machines": {
      "count": "1",
      "env": "${var.env}",
      "tld": "${var.tld}",
      "region": "${var.region}",
      "source": "github.com/Banno/env-setup//modules/aws-machine?ref=ca7082f56c86863644cb85b9c844af07fd583782",
      "tier": "zk"
    },
    "zookeeper": {
      "ipv4_addresses": "${module.east1-machines.ipv4_addresses}",
      "provision_scripts": [

      ],
      "runlist": [
        "recipe[zookeeper:default]"
      ],
      "source": "github.com/Banno/env-setup//modules/chef-machine?ref=ca7082f56c86863644cb85b9c844af07fd583782"
    }
  },
  "variable": {
    "env": {
      "default": "adam"
    },
    "region": {
      "default": "us-east-1"
    },
    "tld": {
      "default": "banno-internal.com"
    }
  }
}

Debug Output

https://gist.githubusercontent.com/adamdecaf/d76d4e27f2e099d44556deca5b33923c/raw/adcef6e59f14acfcc95f92ed6772d06097d04bcc/gistfile1.txt

References

@mitchellh
Copy link
Contributor

Ah this is the same as #9905. See the comment there. :(

@ghost
Copy link

ghost commented Apr 20, 2020

I'm going to lock this issue because it has been closed for 30 days ⏳. This helps our maintainers find and focus on the active issues.

If you have found a problem that seems similar to this, please open a new issue and complete the issue template so we can capture all the details necessary to investigate further.

@ghost ghost locked and limited conversation to collaborators Apr 20, 2020
Sign up for free to subscribe to this conversation on GitHub. Already have an account? Sign in.
Projects
None yet
Development

No branches or pull requests

3 participants