Closed bahamat closed 7 years ago
0.10.4, provider version 0.1.3
provider "triton" { url = "https://us-sw-1.api.joyent.com/" } data "triton_image" "image" { name = "base-64-lts" version = "16.4.1" } data "triton_network" "public" { name = "Joyent-SDC-Public" } resource "triton_machine" "test" { package = "g4-highcpu-128M" image = "${data.triton_image.image.id}" nic { network = "${data.triton_network.public.id}" } }
Please provider a link to a GitHub Gist containing the complete debug output: https://www.terraform.io/docs/internals/debugging.html. Please do NOT paste the debug output in the issue; just paste a link to the Gist.
The instances should not be unnecessarily modified
Every time terraform apply is run it deletes the nic and adds a new nic. This has the side effect of rebooting the instance, and making terraform unusable.
terraform apply
Duplicate of #30.
Terraform Version
0.10.4, provider version 0.1.3
Affected Resource(s)
Terraform Configuration Files
Debug Output
Please provider a link to a GitHub Gist containing the complete debug output: https://www.terraform.io/docs/internals/debugging.html. Please do NOT paste the debug output in the issue; just paste a link to the Gist.
Expected Behavior
The instances should not be unnecessarily modified
Actual Behavior
Every time
terraform apply
is run it deletes the nic and adds a new nic. This has the side effect of rebooting the instance, and making terraform unusable.Steps to Reproduce
terraform apply
terraform apply