-
Notifications
You must be signed in to change notification settings - Fork 9.6k
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
Should be able to manually add instances to a google_compute_instance_group #15024
Labels
Comments
stack72
added a commit
that referenced
this issue
Jun 2, 2017
Fixes: #15024 ``` % make testacc TEST=./builtin/providers/google TESTARGS='-run=TestAccComputeInstanceGroup_' ==> Checking that code complies with gofmt requirements... go generate $(go list ./... | grep -v /terraform/vendor/) 2017/06/02 20:48:54 Generated command/internal_plugin_list.go TF_ACC=1 go test ./builtin/providers/google -v -run=TestAccComputeInstanceGroup_ -timeout 120m === RUN TestAccComputeInstanceGroup_basic --- PASS: TestAccComputeInstanceGroup_basic (123.64s) === RUN TestAccComputeInstanceGroup_update --- PASS: TestAccComputeInstanceGroup_update (150.37s) === RUN TestAccComputeInstanceGroup_outOfOrderInstances --- PASS: TestAccComputeInstanceGroup_outOfOrderInstances (103.71s) PASS ok github.com/hashicorp/terraform/builtin/providers/google 377.737s ```
stack72
added a commit
that referenced
this issue
Jun 2, 2017
…15025) Fixes: #15024 ``` % make testacc TEST=./builtin/providers/google TESTARGS='-run=TestAccComputeInstanceGroup_' ==> Checking that code complies with gofmt requirements... go generate $(go list ./... | grep -v /terraform/vendor/) 2017/06/02 20:48:54 Generated command/internal_plugin_list.go TF_ACC=1 go test ./builtin/providers/google -v -run=TestAccComputeInstanceGroup_ -timeout 120m === RUN TestAccComputeInstanceGroup_basic --- PASS: TestAccComputeInstanceGroup_basic (123.64s) === RUN TestAccComputeInstanceGroup_update --- PASS: TestAccComputeInstanceGroup_update (150.37s) === RUN TestAccComputeInstanceGroup_outOfOrderInstances --- PASS: TestAccComputeInstanceGroup_outOfOrderInstances (103.71s) PASS ok github.com/hashicorp/terraform/builtin/providers/google 377.737s ```
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. |
Sign up for free
to subscribe to this conversation on GitHub.
Already have an account?
Sign in.
Terraform Version
0.9.6
Affected Resource(s)
Terraform Configuration Files
Expected Behavior
After manually adding VMs to the Instance Group, no diff is shown when running
terraform plan
.Actual Behavior
Terraform plans to remove the manually-added VMs on the
google_compute_instance_group
. Example output:Steps to Reproduce
terraform apply
terraform plan
and see that it plans to remove the instanceImportant Factoids
We are using BOSH to provision the VMs and add them to the terraformed
google_compute_instance_group
, using the BOSH Google CPI optionbackend_service
.We currently accomplish the same setup on AWS using the
aws_elb
terraform resource, with BOSH creating the VMs and attaching them to the ELB.The text was updated successfully, but these errors were encountered: