Last active
October 22, 2016 03:24
-
-
Save jtopjian/3c00251105048336bc298180dc4df6a4 to your computer and use it in GitHub Desktop.
Terraform Plan Issue
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
resource "openstack_networking_network_v2" "network_1" { | |
name = "network_1" | |
admin_state_up = "true" | |
} | |
resource "openstack_networking_subnet_v2" "subnet_1" { | |
name = "subnet_1" | |
network_id = "${openstack_networking_network_v2.network_1.id}" | |
cidr = "192.168.199.0/24" | |
ip_version = 4 | |
} | |
resource "openstack_compute_secgroup_v2" "secgroup_1" { | |
name = "secgroup_1" | |
description = "a security group" | |
rule { | |
from_port = 22 | |
to_port = 22 | |
ip_protocol = "tcp" | |
cidr = "0.0.0.0/0" | |
} | |
} | |
resource "openstack_networking_port_v2" "port_1" { | |
name = "port_1" | |
network_id = "${openstack_networking_network_v2.network_1.id}" | |
admin_state_up = "true" | |
security_group_ids = ["${openstack_compute_secgroup_v2.secgroup_1.id}"] | |
fixed_ip { | |
"subnet_id" = "${openstack_networking_subnet_v2.subnet_1.id}" | |
"ip_address" = "192.168.199.23" | |
} | |
} | |
resource "openstack_compute_instance_v2" "instance_1" { | |
name = "instance_1" | |
security_groups = ["${openstack_compute_secgroup_v2.secgroup_1.name}"] | |
network { | |
port = "${openstack_networking_port_v2.port_1.id}" | |
} | |
} |
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
resource "openstack_networking_network_v2" "network_1" { | |
name = "network_1" | |
admin_state_up = "true" | |
} | |
resource "openstack_networking_subnet_v2" "subnet_1" { | |
name = "subnet_1" | |
network_id = "${openstack_networking_network_v2.network_1.id}" | |
cidr = "192.168.199.0/24" | |
ip_version = 4 | |
} | |
resource "openstack_compute_secgroup_v2" "secgroup_1" { | |
name = "secgroup_1" | |
description = "a security group" | |
rule { | |
from_port = 22 | |
to_port = 22 | |
ip_protocol = "tcp" | |
cidr = "0.0.0.0/0" | |
} | |
} | |
resource "openstack_networking_port_v2" "port_1" { | |
name = "port_1" | |
network_id = "${openstack_networking_network_v2.network_1.id}" | |
admin_state_up = "true" | |
security_group_ids = ["${openstack_compute_secgroup_v2.secgroup_1.id}"] | |
fixed_ip { | |
"subnet_id" = "${openstack_networking_subnet_v2.subnet_1.id}" | |
"ip_address" = "192.168.199.23" | |
} | |
} | |
resource "openstack_compute_instance_v2" "instance_1" { | |
name = "instance_1" | |
security_groups = ["${openstack_compute_secgroup_v2.secgroup_1.name}"] | |
network { | |
port = "foo" | |
} | |
} |
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
resource "openstack_compute_secgroup_v2" "secgroup_1" { | |
name = "secgroup_1" | |
description = "a security group" | |
rule { | |
from_port = 22 | |
to_port = 22 | |
ip_protocol = "tcp" | |
cidr = "0.0.0.0/0" | |
} | |
} | |
resource "openstack_networking_port_v2" "port_1" { | |
name = "port_1" | |
network_id = "0e60b899-9bac-4aa1-b6b6-d753345e2d0d" | |
admin_state_up = "true" | |
security_group_ids = ["${openstack_compute_secgroup_v2.secgroup_1.id}"] | |
fixed_ip { | |
"subnet_id" = "d75d9aa8-1b0c-4edc-f49-bf499f10ebb1" | |
"ip_address" = "192.168.199.23" | |
} | |
} | |
resource "openstack_compute_instance_v2" "instance_1" { | |
name = "instance_1" | |
security_groups = ["${openstack_compute_secgroup_v2.secgroup_1.name}"] | |
network { | |
port = "${openstack_networking_port_v2.port_1.id}" | |
} | |
} |
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
2016/10/22 03:12:33 [INFO] Terraform version: 0.7.8 dev 2f92c4fb57c8112455b87da2296a76cd60e2c0f9 | |
2016/10/22 03:12:33 [INFO] CLI args: []string{"/home/ubuntu/go/bin/terraform", "plan"} | |
2016/10/22 03:12:33 [DEBUG] Detected home directory from env var: /home/ubuntu | |
2016/10/22 03:12:33 [DEBUG] Detected home directory from env var: /home/ubuntu | |
2016/10/22 03:12:33 [DEBUG] Attempting to open CLI config file: /home/ubuntu/.terraformrc | |
2016/10/22 03:12:33 [DEBUG] File doesn't exist, but doesn't need to. Ignoring. | |
2016/10/22 03:12:33 [DEBUG] Detected home directory from env var: /home/ubuntu | |
2016/10/22 03:12:33 [DEBUG] New state was assigned lineage "df88aaa1-77a9-4343-8fb8-17627e8a9052" | |
.GraphNodeConfigResource | |
provider.openstack - *terraform.graphNodeProvider | |
openstack_networking_port_v2.port_1 (destroy) - *terraform.graphNodeResourceDestroy | |
openstack_compute_instance_v2.instance_1 (destroy) - *terraform.graphNodeResourceDestroy | |
provider.openstack - *terraform.graphNodeProvider | |
openstack_networking_subnet_v2.subnet_1 - *terraform.GraphNodeConfigResource | |
openstack_networking_network_v2.network_1 - *terraform.GraphNodeConfigResource | |
openstack_networking_subnet_v2.subnet_1 (destroy) - *terraform.graphNodeResourceDestroy | |
provider.openstack - *terraform.graphNodeProvider | |
openstack_networking_subnet_v2.subnet_1 (destroy) - *terraform.graphNodeResourceDestroy | |
openstack_networking_port_v2.port_1 (destroy) - *terraform.graphNodeResourceDestroy | |
provider.openstack - *terraform.graphNodeProvider | |
provider.openstack - *terraform.graphNodeProvider | |
- *terraform.GraphNodeConfigResource | |
provider.openstack - *terraform.graphNodeProvider | |
openstack_networking_port_v2.port_1 (destroy) - *terraform.graphNodeResourceDestroy | |
openstack_compute_instance_v2.instance_1 (destroy) - *terraform.graphNodeResourceDestroy | |
provider.openstack - *terraform.graphNodeProvider | |
openstack_networking_subnet_v2.subnet_1 - *terraform.GraphNodeConfigResource | |
openstack_networking_network_v2.network_1 - *terraform.GraphNodeConfigResource | |
openstack_networking_subnet_v2.subnet_1 (destroy) - *terraform.graphNodeResourceDestroy | |
provider.openstack - *terraform.graphNodeProvider | |
openstack_networking_subnet_v2.subnet_1 (destroy) - *terraform.graphNodeResourceDestroy | |
openstack_networking_port_v2.port_1 (destroy) - *terraform.graphNodeResourceDestroy | |
provider.openstack - *terraform.graphNodeProvider | |
provider.openstack - *terraform.graphNodeProvider | |
2016/10/22 03:12:33 [DEBUG] Checking resource noop: openstack_networking_subnet_v2.subnet_1 | |
2016/10/22 03:12:33 [DEBUG] No diff, not a noop | |
2016/10/22 03:12:33 [DEBUG] Checking resource noop: openstack_networking_port_v2.port_1 | |
2016/10/22 03:12:33 [DEBUG] No diff, not a noop | |
2016/10/22 03:12:33 [DEBUG] Checking resource noop: openstack_compute_instance_v2.instance_1 | |
2016/10/22 03:12:33 [DEBUG] No diff, not a noop | |
2016/10/22 03:12:33 [DEBUG] Checking resource noop: openstack_networking_network_v2.network_1 | |
2016/10/22 03:12:33 [DEBUG] No diff, not a noop | |
2016/10/22 03:12:33 [DEBUG] Checking resource noop: openstack_compute_secgroup_v2.secgroup_1 | |
2016/10/22 03:12:33 [DEBUG] No diff, not a noop | |
2016/10/22 03:12:33 [DEBUG] Starting graph walk: walkInput | |
2016/10/22 03:12:33 [DEBUG] vertex root.provider.openstack: walking | |
2016/10/22 03:12:33 [DEBUG] vertex root.provider.openstack: evaluating | |
2016/10/22 03:12:33 [DEBUG] root: eval: *terraform.EvalSequence | |
2016/10/22 03:12:33 [DEBUG] root: eval: *terraform.EvalInitProvider | |
2016/10/22 03:12:33 [DEBUG] plugin: starting plugin: /home/ubuntu/go/bin/terraform []string{"/home/ubuntu/go/bin/terraform", "internal-plugin", "provider", "openstack"} | |
2016/10/22 03:12:33 [DEBUG] plugin: waiting for RPC address for: /home/ubuntu/go/bin/terraform | |
2016/10/22 03:12:33 [DEBUG] plugin: terraform: 2016/10/22 03:12:33 [INFO] Terraform version: 0.7.8 dev 2f92c4fb57c8112455b87da2296a76cd60e2c0f9 | |
2016/10/22 03:12:33 [DEBUG] plugin: terraform: 2016/10/22 03:12:33 [INFO] CLI args: []string{"/home/ubuntu/go/bin/terraform", "internal-plugin", "provider", "openstack"} | |
2016/10/22 03:12:33 [DEBUG] plugin: terraform: 2016/10/22 03:12:33 [DEBUG] Detected home directory from env var: /home/ubuntu | |
2016/10/22 03:12:33 [DEBUG] plugin: terraform: 2016/10/22 03:12:33 [DEBUG] Detected home directory from env var: /home/ubuntu | |
2016/10/22 03:12:33 [DEBUG] plugin: terraform: 2016/10/22 03:12:33 [DEBUG] Attempting to open CLI config file: /home/ubuntu/.terraformrc | |
2016/10/22 03:12:33 [DEBUG] plugin: terraform: 2016/10/22 03:12:33 [DEBUG] File doesn't exist, but doesn't need to. Ignoring. | |
2016/10/22 03:12:33 [DEBUG] plugin: terraform: openstack-provider (internal) 2016/10/22 03:12:33 [INFO] Starting provider plugin openstack | |
2016/10/22 03:12:33 [DEBUG] plugin: terraform: openstack-provider (internal) 2016/10/22 03:12:33 [DEBUG] Detected home directory from env var: /home/ubuntu | |
2016/10/22 03:12:33 [DEBUG] plugin: terraform: openstack-provider (internal) 2016/10/22 03:12:33 [DEBUG] plugin: plugin address: unix /tmp/plugin080639275 | |
2016/10/22 03:12:33 [DEBUG] root: eval: *terraform.EvalOpFilter | |
2016/10/22 03:12:33 [DEBUG] root: eval: *terraform.EvalSequence | |
2016/10/22 03:12:33 [DEBUG] root: eval: *terraform.EvalGetProvider | |
2016/10/22 03:12:33 [DEBUG] root: eval: *terraform.EvalInterpolate | |
2016/10/22 03:12:33 [DEBUG] root: eval: *terraform.EvalBuildProviderConfig | |
2016/10/22 03:12:33 [DEBUG] root: eval: *terraform.EvalInputProvider | |
2016/10/22 03:12:33 [DEBUG] root: eval: terraform.EvalNoop | |
2016/10/22 03:12:33 [DEBUG] root: eval: terraform.EvalNoop | |
2016/10/22 03:12:33 [DEBUG] root: eval: terraform.EvalNoop | |
2016/10/22 03:12:33 [DEBUG] vertex openstack_compute_secgroup_v2.secgroup_1, got dep: provider.openstack | |
2016/10/22 03:12:33 [DEBUG] vertex root.openstack_compute_secgroup_v2.secgroup_1: walking | |
2016/10/22 03:12:33 [DEBUG] vertex root.openstack_compute_secgroup_v2.secgroup_1: evaluating | |
2016/10/22 03:12:33 [DEBUG] root: eval: *terraform.EvalSequence | |
2016/10/22 03:12:33 [DEBUG] root: eval: *terraform.EvalInterpolate | |
2016/10/22 03:12:33 [DEBUG] vertex openstack_networking_network_v2.network_1, got dep: provider.openstack | |
2016/10/22 03:12:33 [DEBUG] vertex root.openstack_networking_network_v2.network_1: walking | |
2016/10/22 03:12:33 [DEBUG] vertex root.openstack_networking_network_v2.network_1: evaluating | |
2016/10/22 03:12:33 [TRACE] [walkInput] Entering eval tree: openstack_networking_network_v2.network_1 | |
2016/10/22 03:12:33 [DEBUG] root: eval: *terraform.EvalSequence | |
2016/10/22 03:12:33 [DEBUG] root: eval: *terraform.EvalInterpolate | |
2016/10/22 03:12:33 [DEBUG] root: eval: terraform.EvalNoop | |
2016/10/22 03:12:33 [DEBUG] root: eval: *terraform.EvalCountFixZeroOneBoundary | |
2016/10/22 03:12:33 [DEBUG] root: eval: terraform.EvalNoop | |
2016/10/22 03:12:33 [DEBUG] root: eval: *terraform.EvalCountFixZeroOneBoundary | |
2016/10/22 03:12:33 [DEBUG] vertex root.openstack_compute_secgroup_v2.secgroup_1: walking | |
2016/10/22 03:12:33 [DEBUG] vertex root.openstack_networking_network_v2.network_1: walking | |
2016/10/22 03:12:33 [DEBUG] vertex root.openstack_networking_network_v2.network_1: evaluating | |
2016/10/22 03:12:33 [TRACE] [walkInput] Entering eval tree: openstack_networking_network_v2.network_1 | |
2016/10/22 03:12:33 [DEBUG] root: eval: *terraform.EvalSequence | |
2016/10/22 03:12:33 [DEBUG] root: eval: terraform.EvalNoop | |
2016/10/22 03:12:33 [DEBUG] root: eval: *terraform.EvalInstanceInfo | |
2016/10/22 03:12:33 [DEBUG] root: eval: terraform.EvalNoop | |
2016/10/22 03:12:33 [DEBUG] root: eval: terraform.EvalNoop | |
2016/10/22 03:12:33 [DEBUG] root: eval: terraform.EvalNoop | |
2016/10/22 03:12:33 [DEBUG] root: eval: terraform.EvalNoop | |
2016/10/22 03:12:33 [TRACE] [walkInput] Exiting eval tree: openstack_networking_network_v2.network_1 | |
2016/10/22 03:12:33 [DEBUG] vertex openstack_networking_subnet_v2.subnet_1, got dep: openstack_networking_network_v2.network_1 | |
2016/10/22 03:12:33 [DEBUG] vertex root.openstack_networking_subnet_v2.subnet_1: walking | |
2016/10/22 03:12:33 [DEBUG] vertex root.openstack_networking_subnet_v2.subnet_1: evaluating | |
2016/10/22 03:12:33 [TRACE] [walkInput] Entering eval tree: openstack_networking_subnet_v2.subnet_1 | |
2016/10/22 03:12:33 [DEBUG] root: eval: *terraform.EvalSequence | |
2016/10/22 03:12:33 [DEBUG] root: eval: *terraform.EvalInterpolate | |
2016/10/22 03:12:33 [DEBUG] root: eval: terraform.EvalNoop | |
2016/10/22 03:12:33 [DEBUG] root: eval: *terraform.EvalCountFixZeroOneBoundary | |
2016/10/22 03:12:33 [TRACE] [walkInput] Exiting eval tree: openstack_networking_subnet_v2.subnet_1 | |
2016/10/22 03:12:33 [DEBUG] vertex root.openstack_networking_subnet_v2.subnet_1: expanding/walking dynamic subgraph | |
2016/10/22 03:12:33 [DEBUG] vertex root.openstack_compute_secgroup_v2.secgroup_1: evaluating | |
2016/10/22 03:12:33 [TRACE] [walkInput] Entering eval tree: openstack_compute_secgroup_v2.secgroup_1 | |
2016/10/22 03:12:33 [DEBUG] root: eval: *terraform.EvalSequence | |
2016/10/22 03:12:33 [DEBUG] root: eval: terraform.EvalNoop | |
2016/10/22 03:12:33 [DEBUG] vertex root.openstack_networking_subnet_v2.subnet_1: walking | |
2016/10/22 03:12:33 [DEBUG] root: eval: *terraform.EvalInstanceInfo | |
2016/10/22 03:12:33 [DEBUG] root: eval: terraform.EvalNoop | |
2016/10/22 03:12:33 [DEBUG] root: eval: terraform.EvalNoop | |
2016/10/22 03:12:33 [DEBUG] root: eval: terraform.EvalNoop | |
2016/10/22 03:12:33 [DEBUG] root: eval: terraform.EvalNoop | |
2016/10/22 03:12:33 [TRACE] [walkInput] Exiting eval tree: openstack_compute_secgroup_v2.secgroup_1 | |
2016/10/22 03:12:33 [DEBUG] vertex root.openstack_networking_subnet_v2.subnet_1: evaluating | |
2016/10/22 03:12:33 [TRACE] [walkInput] Entering eval tree: openstack_networking_subnet_v2.subnet_1 | |
2016/10/22 03:12:33 [DEBUG] root: eval: *terraform.EvalSequence | |
2016/10/22 03:12:33 [DEBUG] root: eval: terraform.EvalNoop | |
2016/10/22 03:12:33 [DEBUG] root: eval: *terraform.EvalInstanceInfo | |
2016/10/22 03:12:33 [DEBUG] root: eval: terraform.EvalNoop | |
2016/10/22 03:12:33 [DEBUG] root: eval: terraform.EvalNoop | |
2016/10/22 03:12:33 [DEBUG] root: eval: terraform.EvalNoop | |
2016/10/22 03:12:33 [DEBUG] root: eval: terraform.EvalNoop | |
2016/10/22 03:12:33 [TRACE] [walkInput] Exiting eval tree: openstack_networking_subnet_v2.subnet_1 | |
2016/10/22 03:12:33 [DEBUG] vertex openstack_networking_port_v2.port_1, got dep: openstack_networking_subnet_v2.subnet_1 | |
2016/10/22 03:12:33 [DEBUG] vertex openstack_networking_port_v2.port_1, got dep: openstack_compute_secgroup_v2.secgroup_1 | |
2016/10/22 03:12:33 [DEBUG] vertex root.openstack_networking_port_v2.port_1: walking | |
2016/10/22 03:12:33 [DEBUG] vertex root.openstack_networking_port_v2.port_1: evaluating | |
2016/10/22 03:12:33 [TRACE] [walkInput] Entering eval tree: openstack_networking_port_v2.port_1 | |
2016/10/22 03:12:33 [DEBUG] root: eval: *terraform.EvalSequence | |
2016/10/22 03:12:33 [DEBUG] root: eval: *terraform.EvalInterpolate | |
2016/10/22 03:12:33 [DEBUG] root: eval: terraform.EvalNoop | |
2016/10/22 03:12:33 [DEBUG] root: eval: *terraform.EvalCountFixZeroOneBoundary | |
2016/10/22 03:12:33 [DEBUG] vertex root.openstack_networking_port_v2.port_1: walking | |
2016/10/22 03:12:33 [DEBUG] vertex root.openstack_networking_port_v2.port_1: evaluating | |
2016/10/22 03:12:33 [TRACE] [walkInput] Entering eval tree: openstack_networking_port_v2.port_1 | |
2016/10/22 03:12:33 [DEBUG] root: eval: *terraform.EvalSequence | |
2016/10/22 03:12:33 [DEBUG] root: eval: terraform.EvalNoop | |
2016/10/22 03:12:33 [DEBUG] root: eval: *terraform.EvalInstanceInfo | |
2016/10/22 03:12:33 [DEBUG] root: eval: terraform.EvalNoop | |
2016/10/22 03:12:33 [DEBUG] root: eval: terraform.EvalNoop | |
2016/10/22 03:12:33 [DEBUG] root: eval: terraform.EvalNoop | |
2016/10/22 03:12:33 [DEBUG] root: eval: terraform.EvalNoop | |
2016/10/22 03:12:33 [TRACE] [walkInput] Exiting eval tree: openstack_networking_port_v2.port_1 | |
2016/10/22 03:12:33 [DEBUG] vertex openstack_compute_instance_v2.instance_1, got dep: openstack_networking_port_v2.port_1 | |
2016/10/22 03:12:33 [DEBUG] vertex root.openstack_compute_instance_v2.instance_1: walking | |
2016/10/22 03:12:33 [DEBUG] vertex root.openstack_compute_instance_v2.instance_1: evaluating | |
2016/10/22 03:12:33 [TRACE] [walkInput] Entering eval tree: openstack_compute_instance_v2.instance_1 | |
2016/10/22 03:12:33 [DEBUG] root: eval: *terraform.EvalSequence | |
2016/10/22 03:12:33 [DEBUG] root: eval: *terraform.EvalInterpolate | |
2016/10/22 03:12:33 [DEBUG] root: eval: terraform.EvalNoop | |
2016/10/22 03:12:33 [DEBUG] root: eval: *terraform.EvalCountFixZeroOneBoundary | |
2016/10/22 03:12:33 [TRACE] [walkInput] Exiting eval tree: openstack_compute_instance_v2.instance_1 | |
2016/10/22 03:12:33 [DEBUG] vertex root.openstack_compute_instance_v2.instance_1: expanding/walking dynamic subgraph | |
2016/10/22 03:12:33 [TRACE] Graph after step *terraform.ResourceCountTransformer: | |
openstack_compute_instance_v2.instance_1 - *terraform.graphNodeExpandedResource | |
2016/10/22 03:12:33 [DEBUG] vertex root.openstack_compute_instance_v2.instance_1: walking | |
2016/10/22 03:12:33 [DEBUG] vertex root.openstack_compute_instance_v2.instance_1: evaluating | |
2016/10/22 03:12:33 [TRACE] [walkInput] Entering eval tree: openstack_compute_instance_v2.instance_1 | |
2016/10/22 03:12:33 [DEBUG] root: eval: *terraform.EvalSequence | |
2016/10/22 03:12:33 [DEBUG] root: eval: terraform.EvalNoop | |
2016/10/22 03:12:33 [DEBUG] root: eval: *terraform.EvalInstanceInfo | |
2016/10/22 03:12:33 [DEBUG] root: eval: terraform.EvalNoop | |
2016/10/22 03:12:33 [DEBUG] root: eval: terraform.EvalNoop | |
2016/10/22 03:12:33 [DEBUG] root: eval: terraform.EvalNoop | |
2016/10/22 03:12:33 [DEBUG] root: eval: terraform.EvalNoop | |
2016/10/22 03:12:33 [DEBUG] vertex provider.openstack (close), got dep: openstack_compute_instance_v2.instance_1 | |
2016/10/22 03:12:33 [DEBUG] vertex root.provider.openstack (close): walking | |
2016/10/22 03:12:33 [DEBUG] vertex root.provider.openstack (close): evaluating | |
2016/10/22 03:12:33 [TRACE] [walkInput] Entering eval tree: provider.openstack (close) | |
2016/10/22 03:12:33 [DEBUG] root: eval: *terraform.EvalCloseProvider | |
2016/10/22 03:12:33 [INFO] Validating the context... | |
.GraphNodeConfigResource | |
provider.openstack - *terraform.graphNodeProvider | |
openstack_networking_port_v2.port_1 (destroy) - *terraform.graphNodeResourceDestroy | |
openstack_compute_instance_v2.instance_1 (destroy) - *terraform.graphNodeResourceDestroy | |
provider.openstack - *terraform.graphNodeProvider | |
openstack_networking_subnet_v2.subnet_1 - *terraform.GraphNodeConfigResource | |
openstack_networking_network_v2.network_1 - *terraform.GraphNodeConfigResource | |
openstack_networking_subnet_v2.subnet_1 (destroy) - *terraform.graphNodeResourceDestroy | |
provider.openstack - *terraform.graphNodeProvider | |
openstack_networking_subnet_v2.subnet_1 (destroy) - *terraform.graphNodeResourceDestroy | |
openstack_networking_port_v2.port_1 (destroy) - *terraform.graphNodeResourceDestroy | |
provider.openstack - *terraform.graphNodeProvider | |
provider.openstack - *terraform.graphNodeProvider | |
- *terraform.GraphNodeConfigResource | |
provider.openstack - *terraform.graphNodeProvider | |
openstack_networking_port_v2.port_1 (destroy) - *terraform.graphNodeResourceDestroy | |
openstack_compute_instance_v2.instance_1 (destroy) - *terraform.graphNodeResourceDestroy | |
provider.openstack - *terraform.graphNodeProvider | |
openstack_networking_subnet_v2.subnet_1 - *terraform.GraphNodeConfigResource | |
openstack_networking_network_v2.network_1 - *terraform.GraphNodeConfigResource | |
openstack_networking_subnet_v2.subnet_1 (destroy) - *terraform.graphNodeResourceDestroy | |
provider.openstack - *terraform.graphNodeProvider | |
openstack_networking_subnet_v2.subnet_1 (destroy) - *terraform.graphNodeResourceDestroy | |
openstack_networking_port_v2.port_1 (destroy) - *terraform.graphNodeResourceDestroy | |
provider.openstack - *terraform.graphNodeProvider | |
provider.openstack - *terraform.graphNodeProvider | |
2016/10/22 03:12:33 [DEBUG] Checking resource noop: openstack_networking_subnet_v2.subnet_1 | |
2016/10/22 03:12:33 [DEBUG] No diff, not a noop | |
2016/10/22 03:12:33 [DEBUG] Checking resource noop: openstack_networking_port_v2.port_1 | |
2016/10/22 03:12:33 [DEBUG] No diff, not a noop | |
2016/10/22 03:12:33 [DEBUG] Checking resource noop: openstack_compute_instance_v2.instance_1 | |
2016/10/22 03:12:33 [DEBUG] No diff, not a noop | |
2016/10/22 03:12:33 [DEBUG] Checking resource noop: openstack_networking_network_v2.network_1 | |
2016/10/22 03:12:33 [DEBUG] No diff, not a noop | |
2016/10/22 03:12:33 [DEBUG] Checking resource noop: openstack_compute_secgroup_v2.secgroup_1 | |
2016/10/22 03:12:33 [DEBUG] No diff, not a noop | |
2016/10/22 03:12:33 [TRACE] Graph after step *terraform.PruneNoopTransformer: | |
openstack_compute_instance_v2.instance_1 - *terraform.GraphNodeConfigResource | |
openstack_compute_secgroup_v2.secgroup_1 - *terraform.GraphNodeConfigResource | |
openstack_networking_port_v2.port_1 - *terraform.GraphNodeConfigResource | |
provider.openstack - *terraform.graphNodeProvider | |
openstack_compute_secgroup_v2.secgroup_1 - *terraform.GraphNodeConfigResource | |
provider.openstack - *terraform.graphNodeProvider | |
openstack_networking_network_v2.network_1 - *terraform.GraphNodeConfigResource | |
provider.openstack - *terraform.graphNodeProvider | |
openstack_networking_port_v2.port_1 - *terraform.GraphNodeConfigResource | |
openstack_compute_secgroup_v2.secgroup_1 - *terraform.GraphNodeConfigResource | |
openstack_networking_network_v2.network_1 - *terraform.GraphNodeConfigResource | |
openstack_networking_subnet_v2.subnet_1 - *terraform.GraphNodeConfigResource | |
provider.openstack - *terraform.graphNodeProvider | |
openstack_networking_subnet_v2.subnet_1 - *terraform.GraphNodeConfigResource | |
openstack_networking_network_v2.network_1 - *terraform.GraphNodeConfigResource | |
provider.openstack - *terraform.graphNodeProvider | |
provider.openstack - *terraform.graphNodeProvider | |
2016/10/22 03:12:33 [TRACE] Graph after step *terraform.CloseProviderTransformer: | |
openstack_compute_instance_v2.instance_1 - *terraform.GraphNodeConfigResource | |
openstack_compute_secgroup_v2.secgroup_1 - *terraform.GraphNodeConfigResource | |
openstack_networking_port_v2.port_1 - *terraform.GraphNodeConfigResource | |
provider.openstack - *terraform.graphNodeProvider | |
openstack_compute_secgroup_v2.secgroup_1 - *terraform.GraphNodeConfigResource | |
provider.openstack - *terraform.graphNodeProvider | |
openstack_networking_network_v2.network_1 - *terraform.GraphNodeConfigResource | |
provider.openstack - *terraform.graphNodeProvider | |
openstack_networking_port_v2eConfigResource | |
openstack_networking_port_v2.port_1 - *terraform.GraphNodeConfigResource | |
openstack_compute_secgroup_v2.secgroup_1 - *terraform.GraphNodeConfigResource | |
provider.openstack - *terraform.graphNodeProvider | |
openstack_networking_network_v2.network_1 - *terraform.GraphNodeConfigResource | |
provider.openstack - *terraform.graphNodeProvider | |
openstack_networking_port_v2.port_1 - *terraform.GraphNodeConfigResource | |
openstack_compute_secgroup_v2.secgroup_1 - *terraform.GraphNodeConfigResource | |
openstack_networking_subnet_v2.subnet_1 - *terraform.GraphNodeConfigResource | |
openstack_networking_subnet_v2.subnet_1 - *terraform.GraphNodeConfigResource | |
openstack_networking_network_v2.network_1 - *terraform.GraphNodeConfigResource | |
provider.openstack - *terraform.graphNodeProvider | |
provider.openstack (close) - *terraform.graphNodeCloseProvider | |
openstack_compute_instance_v2.instance_1 - *terraform.GraphNodeConfigResource | |
2016/10/22 03:12:33 [DEBUG] Starting graph walk: walkValidate | |
2016/10/22 03:12:33 [DEBUG] vertex root.provider.openstack: walking | |
2016/10/22 03:12:33 [DEBUG] vertex root.provider.openstack: evaluating | |
2016/10/22 03:12:33 [TRACE] [walkValidate] Entering eval tree: provider.openstack | |
2016/10/22 03:12:33 [DEBUG] root: eval: *terraform.EvalSequence | |
2016/10/22 03:12:33 [DEBUG] root: eval: *terraform.EvalInitProvider | |
2016/10/22 03:12:33 [DEBUG] root: eval: terraform.EvalNoop | |
2016/10/22 03:12:33 [DEBUG] root: eval: *terraform.EvalOpFilter | |
2016/10/22 03:12:33 [DEBUG] root: eval: *terraform.EvalSequence | |
2016/10/22 03:12:33 [DEBUG] root: eval: *terraform.EvalGetProvider | |
2016/10/22 03:12:33 [DEBUG] root: eval: *terraform.EvalInterpolate | |
2016/10/22 03:12:33 [DEBUG] root: eval: *terraform.EvalBuildProviderConfig | |
2016/10/22 03:12:33 [DEBUG] root: eval: *terraform.EvalValidateProvider | |
2016/10/22 03:12:33 [DEBUG] root: eval: *terraform.EvalSetProviderConfig | |
2016/10/22 03:12:33 [DEBUG] root: eval: terraform.EvalNoop | |
2016/10/22 03:12:33 [DEBUG] root: eval: terraform.EvalNoop | |
2016/10/22 03:12:33 [TRACE] [walkValidate] Exiting eval tree: provider.openstack | |
2016/10/22 03:12:33 [DEBUG] vertex openstack_networking_network_v2.network_1, got dep: provider.openstack | |
2016/10/22 03:12:33 [DEBUG] vertex root.openstack_networking_network_v2.network_1: walking | |
2016/10/22 03:12:33 [DEBUG] vertex root.openstack_networking_network_v2.network_1: evaluating | |
2016/10/22 03:12:33 [DEBUG] root: eval: *terraform.EvalSequence | |
2016/10/22 03:12:33 [DEBUG] root: eval: *terraform.EvalInterpolate | |
2016/10/22 03:12:33 [DEBUG] vertex openstack_compute_secgroup_v2.secgroup_1, got dep: provider.openstack | |
2016/10/22 03:12:33 [DEBUG] vertex root.openstack_compute_secgroup_v2.secgroup_1: walking | |
2016/10/22 03:12:33 [DEBUG] vertex root.openstack_compute_secgroup_v2.secgroup_1: evaluating | |
2016/10/22 03:12:33 [TRACE] [walkValidate] Entering eval tree: openstack_compute_secgroup_v2.secgroup_1 | |
2016/10/22 03:12:33 [DEBUG] root: eval: *terraform.EvalSequence | |
2016/10/22 03:12:33 [DEBUG] root: eval: *terraform.EvalInterpolate | |
2016/10/22 03:12:33 [DEBUG] root: eval: *terraform.EvalOpFilter | |
2016/10/22 03:12:33 [DEBUG] root: eval: *terraform.EvalValidateCount | |
2016/10/22 03:12:33 [DEBUG] root: eval: *terraform.EvalCountFixZeroOneBoundary | |
2016/10/22 03:12:33 [DEBUG] vertex root.openstack_networking_network_v2.network_1: walking | |
2016/10/22 03:12:33 [DEBUG] root: eval: *terraform.EvalOpFilter | |
2016/10/22 03:12:33 [DEBUG] root: eval: *terraform.EvalValidateCount | |
2016/10/22 03:12:33 [DEBUG] root: eval: *terraform.EvalCountFixZeroOneBoundary | |
2016/10/22 03:12:33 [TRACE] [walkValidate] Exiting eval tree: openstack_compute_secgroup_v2.secgroup_1 | |
2016/10/22 03:12:33 [DEBUG] vertex root.openstack_compute_secgroup_v2.secgroup_1: expanding/walking dynamic subgraph | |
2016/10/22 03:12:33 [TRACE] Graph after step *terraform.ResourceCountTransformer: | |
openstack_compute_secgroup_v2.secgroup_1 - *terraform.graphNodeExpandedResource | |
2016/10/22 03:12:33 [DEBUG] vertex root.openstack_networking_network_v2.network_1: evaluating | |
2016/10/22 03:12:33 [TRACE] Graph after step *terraform.TargetsTransformer: | |
openstack_compute_secgroup_v2.secgroup_1 - *terraform.graphNodeExpandedResource | |
2016/10/22 03:12:33 [TRACE] [walkValidate] Entering eval tree: openstack_networking_network_v2.network_1 | |
2016/10/22 03:12:33 [DEBUG] root: eval: *terraform.EvalSequence | |
2016/10/22 03:12:33 [DEBUG] root: eval: *terraform.EvalOpFilter | |
2016/10/22 03:12:33 [TRACE] Graph after step *terraform.RootTransformer: | |
openstack_compute_secgroup_v2.secgroup_1 - *terraform.graphNodeExpandedResource | |
2016/10/22 03:12:33 [DEBUG] root: eval: *terraform.EvalSequence | |
2016/10/22 03:12:33 [DEBUG] root: eval: *terraform.EvalGetProvider | |
2016/10/22 03:12:33 [DEBUG] root: eval: *terraform.EvalInterpolate | |
2016/10/22 03:12:33 [DEBUG] vertex root.openstack_compute_secgroup_v2.secgroup_1: walking | |
2016/10/22 03:12:33 [DEBUG] root: eval: *terraform.EvalValidateResource | |
2016/10/22 03:12:33 [DEBUG] vertex root.openstack_compute_secgroup_v2.secgroup_1: evaluating | |
2016/10/22 03:12:33 [TRACE] [walkValidate] Entering eval tree: openstack_compute_secgroup_v2.secgroup_1 | |
2016/10/22 03:12:33 [DEBUG] root: eval: *terraform.EvalSequence | |
2016/10/22 03:12:33 [DEBUG] root: eval: *terraform.EvalOpFilter | |
2016/10/22 03:12:33 [DEBUG] root: eval: *terraform.EvalSequence | |
2016/10/22 03:12:33 [DEBUG] root: eval: *terraform.EvalGetProvider | |
2016/10/22 03:12:33 [DEBUG] root: eval: *terraform.EvalInterpolate | |
2016/10/22 03:12:33 [DEBUG] root: eval: *terraform.EvalValidateResource | |
2016/10/22 03:12:33 [DEBUG] root: eval: *terraform.EvalInstanceInfo | |
2016/10/22 03:12:33 [DEBUG] root: eval: terraform.EvalNoop | |
2016/10/22 03:12:33 [DEBUG] root: eval: terraform.EvalNoop | |
2016/10/22 03:12:33 [DEBUG] root: eval: terraform.EvalNoop | |
2016/10/22 03:12:33 [DEBUG] root: eval: terraform.EvalNoop | |
2016/10/22 03:12:33 [TRACE] [walkValidate] Exiting eval tree: openstack_compute_secgroup_v2.secgroup_1 | |
2016/10/22 03:12:33 [DEBUG] vertex openstack_networking_port_v2.port_1, got dep: openstack_compute_secgroup_v2.secgroup_1 | |
2016/10/22 03:12:33 [DEBUG] root: eval: *terraform.EvalInstanceInfo | |
2016/10/22 03:12:33 [DEBUG] root: eval: terraform.EvalNoop | |
2016/10/22 03:12:33 [DEBUG] root: eval: terraform.EvalNoop | |
2016/10/22 03:12:33 [DEBUG] root: eval: terraform.EvalNoop | |
2016/10/22 03:12:33 [DEBUG] root: eval: terraform.EvalNoop | |
2016/10/22 03:12:33 [DEBUG] vertex openstack_networking_subnet_v2.subnet_1, got dep: openstack_networking_network_v2.network_1 | |
2016/10/22 03:12:33 [DEBUG] vertex root.openstack_networking_subnet_v2.subnet_1: walking | |
2016/10/22 03:12:33 [DEBUG] vertex root.openstack_networking_subnet_v2.subnet_1: evaluating | |
2016/10/22 03:12:33 [DEBUG] root: eval: *terraform.EvalSequence | |
2016/10/22 03:12:33 [DEBUG] root: eval: *terraform.EvalInterpolate | |
2016/10/22 03:12:33 [DEBUG] root: eval: *terraform.EvalOpFilter | |
2016/10/22 03:12:33 [DEBUG] root: eval: *terraform.EvalValidateCount | |
2016/10/22 03:12:33 [DEBUG] root: eval: *terraform.EvalCountFixZeroOneBoundary | |
2016/10/22 03:12:33 [DEBUG] vertex root.openstack_networking_subnet_v2.subnet_1: expanding/walking dynamic subgraph | |
2016/10/22 03:12:33 [DEBUG] vertex root.openstack_networking_subnet_v2.subnet_1: walking | |
2016/10/22 03:12:33 [DEBUG] vertex root.openstack_networking_subnet_v2.subnet_1: evaluating | |
2016/10/22 03:12:33 [DEBUG] root: eval: *terraform.EvalSequence | |
2016/10/22 03:12:33 [DEBUG] root: eval: *terraform.EvalOpFilter | |
2016/10/22 03:12:33 [DEBUG] root: eval: *terraform.EvalSequence | |
2016/10/22 03:12:33 [DEBUG] root: eval: *terraform.EvalGetProvider | |
2016/10/22 03:12:33 [DEBUG] root: eval: *terraform.EvalInterpolate | |
2016/10/22 03:12:33 [DEBUG] root: eval: *terraform.EvalValidateResource | |
2016/10/22 03:12:33 [DEBUG] root: eval: *terraform.EvalInstanceInfo | |
2016/10/22 03:12:33 [DEBUG] root: eval: terraform.EvalNoop | |
2016/10/22 03:12:33 [DEBUG] root: eval: terraform.EvalNoop | |
2016/10/22 03:12:33 [DEBUG] root: eval: terraform.EvalNoop | |
2016/10/22 03:12:33 [DEBUG] root: eval: terraform.EvalNoop | |
2016/10/22 03:12:33 [TRACE] [walkValidate] Exiting eval tree: openstack_networking_subnet_v2.subnet_1 | |
2016/10/22 03:12:33 [DEBUG] vertex openstack_networking_port_v2.port_1, got dep: openstack_networking_subnet_v2.subnet_1 | |
2016/10/22 03:12:33 [DEBUG] vertex root.openstack_networking_port_v2.port_1: walking | |
2016/10/22 03:12:33 [DEBUG] vertex root.openstack_networking_port_v2.port_1: evaluating | |
2016/10/22 03:12:33 [TRACE] [walkValidate] Entering eval tree: openstack_networking_port_v2.port_1 | |
2016/10/22 03:12:33 [DEBUG] root: eval: *terraform.EvalSequence | |
2016/10/22 03:12:33 [DEBUG] root: eval: *terraform.EvalInterpolate | |
2016/10/22 03:12:33 [DEBUG] root: eval: *terraform.EvalOpFilter | |
2016/10/22 03:12:33 [DEBUG] root: eval: *terraform.EvalValidateCount | |
2016/10/22 03:12:33 [DEBUG] root: eval: *terraform.EvalCountFixZeroOneBoundary | |
2016/10/22 03:12:33 [TRACE] [walkValidate] Exiting eval tree: openstack_networking_port_v2.port_1 | |
2016/10/22 03:12:33 [DEBUG] vertex root.openstack_networking_port_v2.port_1: expanding/walking dynamic subgraph | |
2016/10/22 03:12:33 [DEBUG] vertex root.openstack_networking_port_v2.port_1: walking | |
2016/10/22 03:12:33 [DEBUG] vertex root.openstack_networking_port_v2.port_1: evaluating | |
2016/10/22 03:12:33 [TRACE] [walkValidate] Entering eval tree: openstack_networking_port_v2.port_1 | |
2016/10/22 03:12:33 [DEBUG] root: eval: *terraform.EvalSequence | |
2016/10/22 03:12:33 [DEBUG] root: eval: *terraform.EvalOpFilter | |
2016/10/22 03:12:33 [DEBUG] root: eval: *terraform.EvalSequence | |
2016/10/22 03:12:33 [DEBUG] root: eval: *terraform.EvalGetProvider | |
2016/10/22 03:12:33 [DEBUG] root: eval: *terraform.EvalInterpolate | |
2016/10/22 03:12:33 [DEBUG] root: eval: *terraform.EvalValidateResource | |
2016/10/22 03:12:33 [DEBUG] root: eval: *terraform.EvalInstanceInfo | |
2016/10/22 03:12:33 [DEBUG] root: eval: terraform.EvalNoop | |
2016/10/22 03:12:33 [DEBUG] root: eval: terraform.EvalNoop | |
2016/10/22 03:12:33 [DEBUG] root: eval: terraform.EvalNoop | |
2016/10/22 03:12:33 [DEBUG] root: eval: terraform.EvalNoop | |
2016/10/22 03:12:33 [DEBUG] vertex root.openstack_compute_instance_v2.instance_1: walking | |
2016/10/22 03:12:33 [DEBUG] vertex root.openstack_compute_instance_v2.instance_1: evaluating | |
2016/10/22 03:12:33 [TRACE] [walkValidate] Entering eval tree: openstack_compute_instance_v2.instance_1 | |
2016/10/22 03:12:33 [DEBUG] root: eval: *terraform.EvalSequence | |
2016/10/22 03:12:33 [DEBUG] root: eval: *terraform.EvalInterpolate | |
2016/10/22 03:12:33 [DEBUG] root: eval: *terraform.EvalOpFilter | |
2016/10/22 03:12:33 [DEBUG] root: eval: *terraform.EvalValidateCount | |
2016/10/22 03:12:33 [DEBUG] root: eval: *terraform.EvalCountFixZeroOneBoundary | |
2016/10/22 03:12:33 [DEBUG] vertex root.openstack_compute_instance_v2.instance_1: walking | |
2016/10/22 03:12:33 [DEBUG] vertex root.openstack_compute_instance_v2.instance_1: evaluating | |
2016/10/22 03:12:33 [TRACE] [walkValidate] Entering eval tree: openstack_compute_instance_v2.instance_1 | |
2016/10/22 03:12:33 [DEBUG] root: eval: *terraform.EvalSequence | |
2016/10/22 03:12:33 [DEBUG] root: eval: *terraform.EvalOpFilter | |
2016/10/22 03:12:33 [DEBUG] root: eval: *terraform.EvalSequence | |
2016/10/22 03:12:33 [DEBUG] root: eval: *terraform.EvalGetProvider | |
2016/10/22 03:12:33 [DEBUG] root: eval: *terraform.EvalInterpolate | |
2016/10/22 03:12:33 [DEBUG] root: eval: *terraform.EvalValidateResource | |
2016/10/22 03:12:33 [DEBUG] root: eval: *terraform.EvalInstanceInfo | |
2016/10/22 03:12:33 [DEBUG] root: eval: terraform.EvalNoop | |
2016/10/22 03:12:33 [DEBUG] root: eval: terraform.EvalNoop | |
2016/10/22 03:12:33 [DEBUG] root: eval: terraform.EvalNoop | |
2016/10/22 03:12:33 [DEBUG] root: eval: terraform.EvalNoop | |
2016/10/22 03:12:33 [DEBUG] vertex provider.openstack (close), got dep: openstack_compute_instance_v2.instance_1 | |
2016/10/22 03:12:33 [DEBUG] vertex root.provider.openstack (close): walking | |
2016/10/22 03:12:33 [DEBUG] vertex root.provider.openstack (close): evaluating | |
2016/10/22 03:12:33 [TRACE] [walkValidate] Entering eval tree: provider.openstack (close) | |
2016/10/22 03:12:33 [DEBUG] root: eval: *terraform.EvalCloseProvider | |
2016/10/22 03:12:33 [DEBUG] Waiting for shadow graph to complete... | |
2016/10/22 03:12:33 [INFO] Starting shadow graph walk: walkValidate | |
2016/10/22 03:12:33 [DEBUG] vertex root.provider.openstack: walking | |
2016/10/22 03:12:33 [DEBUG] vertex root.provider.openstack: evaluating | |
2016/10/22 03:12:33 [TRACE] [walkValidate] Entering eval tree: provider.openstack | |
2016/10/22 03:12:33 [DEBUG] root: eval: *terraform.EvalSequence | |
2016/10/22 03:12:33 [DEBUG] root: eval: *terraform.EvalInitProvider | |
2016/10/22 03:12:33 [DEBUG] root: eval: terraform.EvalNoop | |
2016/10/22 03:12:33 [DEBUG] root: eval: *terraform.EvalOpFilter | |
2016/10/22 03:12:33 [DEBUG] root: eval: *terraform.EvalSequence | |
2016/10/22 03:12:33 [DEBUG] root: eval: *terraform.EvalGetProvider | |
2016/10/22 03:12:33 [DEBUG] root: eval: *terraform.EvalInterpolate | |
2016/10/22 03:12:33 [DEBUG] root: eval: *terraform.EvalBuildProviderConfig | |
2016/10/22 03:12:33 [DEBUG] root: eval: *terraform.EvalValidateProvider | |
2016/10/22 03:12:33 [DEBUG] root: eval: *terraform.EvalSetProviderConfig | |
2016/10/22 03:12:33 [DEBUG] root: eval: terraform.EvalNoop | |
2016/10/22 03:12:33 [DEBUG] root: eval: terraform.EvalNoop | |
2016/10/22 03:12:33 [DEBUG] vertex openstack_compute_secgroup_v2.secgroup_1, got dep: provider.openstack | |
2016/10/22 03:12:33 [DEBUG] vertex root.openstack_compute_secgroup_v2.secgroup_1: walking | |
2016/10/22 03:12:33 [DEBUG] vertex root.openstack_compute_secgroup_v2.secgroup_1: evaluating | |
2016/10/22 03:12:33 [TRACE] [walkValidate] Entering eval tree: openstack_compute_secgroup_v2.secgroup_1 | |
2016/10/22 03:12:33 [DEBUG] root: eval: *terraform.EvalSequence | |
2016/10/22 03:12:33 [DEBUG] root: eval: *terraform.EvalInterpolate | |
2016/10/22 03:12:33 [DEBUG] vertex openstack_networking_network_v2.network_1, got dep: provider.openstack | |
2016/10/22 03:12:33 [DEBUG] vertex root.openstack_networking_network_v2.network_1: walking | |
2016/10/22 03:12:33 [DEBUG] vertex root.openstack_networking_network_v2.network_1: evaluating | |
2016/10/22 03:12:33 [DEBUG] root: eval: *terraform.EvalCountFixZeroOneBoundary | |
2016/10/22 03:12:33 [DEBUG] vertex root.openstack_compute_secgroup_v2.secgroup_1: expanding/walking dynamic subgraph | |
2016/10/22 03:12:33 [DEBUG] root: eval: *terraform.EvalOpFilter | |
2016/10/22 03:12:33 [DEBUG] root: eval: *terraform.EvalValidateCount | |
2016/10/22 03:12:33 [DEBUG] vertex root.openstack_compute_secgroup_v2.secgroup_1: walking | |
2016/10/22 03:12:33 [DEBUG] root: eval: *terraform.EvalCountFixZeroOneBoundary | |
2016/10/22 03:12:33 [DEBUG] vertex root.openstack_networking_network_v2.network_1: expanding/walking dynamic subgraph | |
2016/10/22 03:12:33 [DEBUG] vertex root.openstack_compute_secgroup_v2.secgroup_1: evaluating | |
2016/10/22 03:12:33 [TRACE] [walkValidate] Entering eval tree: openstack_compute_secgroup_v2.secgroup_1 | |
2016/10/22 03:12:33 [DEBUG] root: eval: *terraform.EvalSequence | |
2016/10/22 03:12:33 [DEBUG] root: eval: *terraform.EvalOpFilter | |
2016/10/22 03:12:33 [DEBUG] root: eval: *terraform.EvalSequence | |
2016/10/22 03:12:33 [DEBUG] root: eval: *terraform.EvalGetProvider | |
2016/10/22 03:12:33 [DEBUG] root: eval: *terraform.EvalInterpolate | |
2016/10/22 03:12:33 [DEBUG] vertex root.openstack_networking_network_v2.network_1: walking | |
2016/10/22 03:12:33 [DEBUG] vertex root.openstack_networking_network_v2.network_1: evaluating | |
2016/10/22 03:12:33 [TRACE] [walkValidate] Entering eval tree: openstack_networking_network_v2.network_1 | |
2016/10/22 03:12:33 [DEBUG] root: eval: *terraform.EvalSequence | |
2016/10/22 03:12:33 [DEBUG] root: eval: *terraform.EvalOpFilter | |
2016/10/22 03:12:33 [DEBUG] root: eval: *terraform.EvalSequence | |
2016/10/22 03:12:33 [DEBUG] root: eval: *terraform.EvalGetProvider | |
2016/10/22 03:12:33 [DEBUG] root: eval: *terraform.EvalInterpolate | |
2016/10/22 03:12:33 [DEBUG] root: eval: *terraform.EvalValidateResource | |
2016/10/22 03:12:33 [DEBUG] root: eval: *terraform.EvalInstanceInfo | |
2016/10/22 03:12:33 [DEBUG] root: eval: terraform.EvalNoop | |
2016/10/22 03:12:33 [DEBUG] root: eval: terraform.EvalNoop | |
2016/10/22 03:12:33 [DEBUG] root: eval: terraform.EvalNoop | |
2016/10/22 03:12:33 [DEBUG] root: eval: terraform.EvalNoop | |
2016/10/22 03:12:33 [TRACE] [walkValidate] Exiting eval tree: openstack_networking_network_v2.network_1 | |
2016/10/22 03:12:33 [DEBUG] vertex openstack_networking_subnet_v2.subnet_1, got dep: openstack_networking_network_v2.network_1 | |
2016/10/22 03:12:33 [DEBUG] vertex root.openstack_networking_subnet_v2.subnet_1: walking | |
2016/10/22 03:12:33 [DEBUG] vertex root.openstack_networking_subnet_v2.subnet_1: evaluating | |
2016/10/22 03:12:33 [TRACE] [walkValidate] Entering eval tree: openstack_networking_subnet_v2.subnet_1 | |
2016/10/22 03:12:33 [DEBUG] root: eval: *terraform.EvalSequence | |
2016/10/22 03:12:33 [DEBUG] root: eval: *terraform.EvalInterpolate | |
2016/10/22 03:12:33 [DEBUG] root: eval: *terraform.EvalValidateResource | |
2016/10/22 03:12:33 [DEBUG] root: eval: *terraform.EvalOpFilter | |
2016/10/22 03:12:33 [DEBUG] root: eval: *terraform.EvalValidateCount | |
2016/10/22 03:12:33 [DEBUG] root: eval: *terraform.EvalInstanceInfo | |
2016/10/22 03:12:33 [DEBUG] root: eval: terraform.EvalNoop | |
2016/10/22 03:12:33 [DEBUG] root: eval: terraform.EvalNoop | |
2016/10/22 03:12:33 [DEBUG] root: eval: terraform.EvalNoop | |
2016/10/22 03:12:33 [DEBUG] root: eval: terraform.EvalNoop | |
2016/10/22 03:12:33 [TRACE] [walkValidate] Exiting eval tree: openstack_compute_secgroup_v2.secgroup_1 | |
2016/10/22 03:12:33 [DEBUG] vertex openstack_networking_port_v2.port_1, got dep: openstack_compute_secgroup_v2.secgroup_1 | |
2016/10/22 03:12:33 [DEBUG] root: eval: *terraform.EvalCountFixZeroOneBoundary | |
2016/10/22 03:12:33 [TRACE] [walkValidate] Exiting eval tree: openstack_networking_subnet_v2.subnet_1 | |
2016/10/22 03:12:33 [DEBUG] vertex root.openstack_networking_subnet_v2.subnet_1: expanding/walking dynamic subgraph | |
2016/10/22 03:12:33 [TRACE] Graph after step *terraform.ResourceCountTransformer: | |
openstack_networking_subnet_v2.subnet_1 - *terraform.graphNodeExpandedResource | |
2016/10/22 03:12:33 [TRACE] Graph after step *terraform.TargetsTransformer: | |
openstack_networking_subnet_v2.subnet_1 - *terraform.graphNodeExpandedResource | |
2016/10/22 03:12:33 [TRACE] Graph after step *terraform.RootTransformer: | |
openstack_networking_subnet_v2.subnet_1 - *terraform.graphNodeExpandedResource | |
2016/10/22 03:12:33 [DEBUG] vertex root.openstack_networking_subnet_v2.subnet_1: walking | |
2016/10/22 03:12:33 [DEBUG] vertex root.openstack_networking_subnet_v2.subnet_1: evaluating | |
2016/10/22 03:12:33 [TRACE] [walkValidate] Entering eval tree: openstack_networking_subnet_v2.subnet_1 | |
2016/10/22 03:12:33 [DEBUG] root: eval: *terraform.EvalSequence | |
2016/10/22 03:12:33 [DEBUG] root: eval: *terraform.EvalOpFilter | |
2016/10/22 03:12:33 [DEBUG] root: eval: *terraform.EvalSequence | |
2016/10/22 03:12:33 [DEBUG] root: eval: *terraform.EvalGetProvider | |
2016/10/22 03:12:33 [DEBUG] root: eval: *terraform.EvalInterpolate | |
2016/10/22 03:12:33 [DEBUG] root: eval: *terraform.EvalValidateResource | |
2016/10/22 03:12:33 [DEBUG] root: eval: *terraform.EvalInstanceInfo | |
2016/10/22 03:12:33 [DEBUG] root: eval: terraform.EvalNoop | |
2016/10/22 03:12:33 [DEBUG] root: eval: terraform.EvalNoop | |
2016/10/22 03:12:33 [DEBUG] root: eval: terraform.EvalNoop | |
2016/10/22 03:12:33 [DEBUG] root: eval: terraform.EvalNoop | |
2016/10/22 03:12:33 [TRACE] [walkValidate] Exiting eval tree: openstack_networking_subnet_v2.subnet_1 | |
2016/10/22 03:12:33 [DEBUG] vertex openstack_networking_port_v2.port_1, got dep: openstack_networking_subnet_v2.subnet_1 | |
2016/10/22 03:12:33 [DEBUG] vertex root.openstack_networking_port_v2.port_1: walking | |
2016/10/22 03:12:33 [DEBUG] vertex root.openstack_networking_port_v2.port_1: evaluating | |
2016/10/22 03:12:33 [TRACE] [walkValidate] Entering eval tree: openstack_networking_port_v2.port_1 | |
2016/10/22 03:12:33 [DEBUG] root: eval: *terraform.EvalSequence | |
2016/10/22 03:12:33 [DEBUG] root: eval: *terraform.EvalInterpolate | |
2016/10/22 03:12:33 [DEBUG] root: eval: *terraform.EvalOpFilter | |
2016/10/22 03:12:33 [DEBUG] root: eval: *terraform.EvalValidateCount | |
2016/10/22 03:12:33 [DEBUG] root: eval: *terraform.EvalCountFixZeroOneBoundary | |
2016/10/22 03:12:33 [TRACE] [walkValidate] Exiting eval tree: openstack_networking_port_v2.port_1 | |
2016/10/22 03:12:33 [DEBUG] vertex root.openstack_networking_port_v2.port_1: expanding/walking dynamic subgraph | |
2016/10/22 03:12:33 [TRACE] Graph after step *terraform.ResourceCountTransformer: | |
openstack_networking_port_v2.port_1 - *terraform.graphNodeExpandedResource | |
2016/10/22 03:12:33 [TRACE] Graph after step *terraform.TargetsTransformer: | |
openstack_networking_port_v2.port_1 - *terraform.graphNodeExpandedResource | |
2016/10/22 03:12:33 [TRACE] Graph after step *terraform.RootTransformer: | |
openstack_networking_port_v2.port_1 - *terraform.graphNodeExpandedResource | |
2016/10/22 03:12:33 [DEBUG] vertex root.openstack_networking_port_v2.port_1: walking | |
2016/10/22 03:12:33 [DEBUG] vertex root.openstack_networking_port_v2.port_1: evaluating | |
2016/10/22 03:12:33 [TRACE] [walkValidate] Entering eval tree: openstack_networking_port_v2.port_1 | |
2016/10/22 03:12:33 [DEBUG] root: eval: *terraform.EvalSequence | |
2016/10/22 03:12:33 [DEBUG] root: eval: *terraform.EvalOpFilter | |
2016/10/22 03:12:33 [DEBUG] root: eval: *terraform.EvalSequence | |
2016/10/22 03:12:33 [DEBUG] root: eval: *terraform.EvalGetProvider | |
2016/10/22 03:12:33 [DEBUG] root: eval: *terraform.EvalInterpolate | |
2016/10/22 03:12:33 [DEBUG] root: eval: *terraform.EvalValidateResource | |
2016/10/22 03:12:33 [DEBUG] root: eval: *terraform.EvalInstanceInfo | |
2016/10/22 03:12:33 [DEBUG] root: eval: terraform.EvalNoop | |
2016/10/22 03:12:33 [DEBUG] root: eval: terraform.EvalNoop | |
2016/10/22 03:12:33 [DEBUG] root: eval: terraform.EvalNoop | |
2016/10/22 03:12:33 [DEBUG] root: eval: terraform.EvalNoop | |
2016/10/22 03:12:33 [TRACE] [walkValidate] Exiting eval tree: openstack_networking_port_v2.port_1 | |
2016/10/22 03:12:33 [DEBUG] vertex openstack_compute_instance_v2.instance_1, got dep: openstack_networking_port_v2.port_1 | |
2016/10/22 03:12:33 [DEBUG] vertex root.openstack_compute_instance_v2.instance_1: walking | |
2016/10/22 03:12:33 [DEBUG] vertex root.openstack_compute_instance_v2.instance_1: evaluating | |
2016/10/22 03:12:33 [TRACE] [walkValidate] Entering eval tree: openstack_compute_instance_v2.instance_1 | |
2016/10/22 03:12:33 [DEBUG] root: eval: *terraform.EvalSequence | |
2016/10/22 03:12:33 [DEBUG] root: eval: *terraform.EvalInterpolate | |
2016/10/22 03:12:33 [DEBUG] root: eval: *terraform.EvalOpFilter | |
2016/10/22 03:12:33 [DEBUG] root: eval: *terraform.EvalValidateCount | |
2016/10/22 03:12:33 [DEBUG] root: eval: *terraform.EvalCountFixZeroOneBoundary | |
2016/10/22 03:12:33 [TRACE] [walkValidate] Exiting eval tree: openstack_compute_instance_v2.instance_1 | |
2016/10/22 03:12:33 [DEBUG] vertex root.openstack_compute_instance_v2.instance_1: expanding/walking dynamic subgraph | |
2016/10/22 03:12:33 [TRACE] Graph after step *terraform.ResourceCountTransformer: | |
openstack_compute_inst2016/10/22 03:12:38 [DEBUG] vertex provider.openstack (close), waiting for: openstack_compute_instance_v2.instance_1 | |
2016/10/22 03:12:43 [DEBUG] vertex provider.openstack (close), waiting for: openstack_compute_instance_v2.instance_1 | |
2016/10/22 03:12:48 [DEBUG] vertex provider.openstack (close), waiting for: openstack_compute_instance_v2.instance_1 | |
2016/10/22 03:12:53 [DEBUG] vertex provider.openstack (close), waiting for: openstack_compute_instance_v2.instance_1 |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment