Last active
September 22, 2018 23:45
-
-
Save akutz/e3b8ce0315095f89fcb83bd030ee7049 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
TF_VAR_run_conformance_tests=false | |
AWS_LOAD_BALANCER=false |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// | |
// This file may be replaced when run via Docker. The replacement | |
// uses the etcd discovery URL response returned from a previous | |
// apply operation. | |
// | |
data "http" "etcd_discovery" { | |
url = "https://discovery.etcd.io/new?size=${var.ctl_count}" | |
} | |
locals { | |
etcd_discovery = "${data.http.etcd_discovery.body}" | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment