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

Terraform Crash #508

Closed
llBIKSll opened this issue Apr 18, 2018 · 3 comments
Closed

Terraform Crash #508

llBIKSll opened this issue Apr 18, 2018 · 3 comments

Comments

@llBIKSll
Copy link

###Error Message
!!!!!!!!!!!!!!!!!!!!!!!!!!! TERRAFORM CRASH !!!!!!!!!!!!!!!!!!!!!!!!!!!!

Terraform crashed! This is always indicative of a bug within Terraform.
A crash log has been placed at "crash.log" relative to your current
working directory. It would be immensely helpful if you could please
report the crash with Terraform1 so that we can fix this.

When reporting bugs, please include your terraform version. That
information is available on the first line of crash.log. You can also
get it by running 'terraform --version' on the command line.

!!!!!!!!!!!!!!!!!!!!!!!!!!! TERRAFORM CRASH !!!!!!!!!!!!!!!!!!!!!!!!!!!!
odified: "" => ""

version_date: "" => "2018-04-17"
Error: Error applying plan:

2 error(s) occurred:

  • oci_identity_group.demo_group: 1 error(s) occurred:

  • oci_identity_group.demo_group: unexpected EOF

  • oci_identity_policy.demo_policy: 1 error(s) occurred:

  • oci_identity_policy.demo_policy: unexpected EOF

Terraform does not automatically rollback in the face of errors.
Instead, your Terraform state file has been partially updated with
any resources that successfully completed. Please address the error
above and apply again to incrementally change your infrastructure.

Terraform Version

Terraform v0.11.7

# Run this command to get the terraform version:

$ terraform -v

OCI Provider Version

v2.1.5

# Execute the plugin directly to get the version:

$ <path-to-plugin>/terraform-provider-oci

Description:

Run Init and Plan with out any error

Terraform Plan

main.tf

provider "oci" { tenancy_ocid = "${var.ref_tenancy}" user_ocid = "${var.ref_user}" fingerprint = "${var.ref_fingerprint}" private_key_path = "${var.ref_privatekeylocation}"

private_key_password = "${var.private_key_password}"

region = "${var.ref_region}"
}

#Create Compartmens
#Comparment reference for Prod env
resource "oci_identity_compartment" "demo_compartment" {
#Required
compartment_id = "${var.ref_tenancy}"
description = "Comparment for Demo Refrence Architeture"
name = "${var.ref_comp_demo}"
}

#Create Identity Group
#Groups for user who can get access to the demo compartment
resource "oci_identity_group" "demo_group" {
#Required
compartment_id = "${oci_identity_compartment.demo_compartment.id}"
description = "Group who have access to Demo Compartment - NOT FOR PROD"
name = "${var.ref_group_demo}"
}

#Create Policy
#Create Policy for user to get full access to the demo compartment
resource "oci_identity_policy" "demo_policy" {
#Required
compartment_id = "${oci_identity_compartment.demo_compartment.id}"
description = "Give full access to all the resource in the Demo Compartment - NOT FOR PROD"
name = "${var.ref_policy_demo}"
statements = ["Allow group Demo_Group to manage all-resources in compartment Demo_Compartment"]

#Common Policies - //docs.us-phoenix-1.oraclecloud.com/Content/Identity/Concepts/commonpolicies.htm
#Optional
version_date = "2018-04-17"
}

/*

#Create VCN
#Create the VCN for the demo compartment
resource "oci_core_vcn" "demo_vcn" {
#Required
cidr_block = "${var.ref_vcn_cidr_block_demo}"
compartment_id = "${oci_identity_compartment.demo_compartment.id}"

#Optional
display_name = "${var.ref_vcn_demo}"
}

#Create Subnet
#Create the an subnet for the VCN
resource "oci_core_subnet" "demo_subnet" {
availability_domain = "${var.ref_availability_domain}"
cidr_block = "10.1.1.0/24"
display_name = "Demo_Subnet"
dns_label = "demo_subnet"
compartment_id = "${oci_identity_compartment.demo_compartment.id}"
vcn_id = "${oci_core_vcn.demo_vcn.id}}"
security_list_ids = ["${oci_core_security_list.demo_seclist.id}"]
route_table_id = "${oci_core_route_table.demo_rt.id}"
dhcp_options_id = "${oci_core_vcn.demo_vcn.id}"
}

#Create Internet Gateway
resource "oci_core_internet_gateway" "demo_ig" {
compartment_id = "${oci_identity_compartment.demo_compartment.id}"
display_name = "Demo_IG"
vcn_id = "${oci_core_vcn.demo_vcn.id}"
}

#Create Route Table
resource "oci_core_route_table" "demo_rt" {
compartment_id = "${oci_identity_compartment.demo_compartment.id}"
vcn_id = "${oci_core_vcn.demo_vcn.id}"
display_name = "Demo_Table"

route_rules {
cidr_block = "0.0.0.0/0"
network_entity_id = "${oci_core_internet_gateway.demo_ig.id}"
}
}

Create Security List

Protocols are specified as protocol numbers.

http://www.iana.org/assignments/protocol-numbers/protocol-numbers.xhtml

resource "oci_core_security_list" "demo_seclist" {
compartment_id = "${oci_identity_compartment.demo_compartment.id}"
vcn_id = "${oci_core_vcn.demo_vcn.id}"
display_name = "Demo_Seclist"

// allow outbound tcp traffic on all ports
egress_security_rules {
destination = "0.0.0.0/0"
protocol = "6" //tcp
}

// allow outbound udp traffic on a port range
egress_security_rules {
destination = "0.0.0.0/0"
protocol = "17" // udp
stateless = true

udp_options {
  // These values correspond to the destination port range.
  "min" = 319
  "max" = 320
}

}

// allow inbound ssh traffic from a specific port
ingress_security_rules {
protocol = "6" // tcp
source = "0.0.0.0/0"
stateless = false

tcp_options {
  source_port_range {
    "min" = 100
    "max" = 100
  }

  // These values correspond to the destination port range.
  "min" = 22
  "max" = 22
}

}

// allow inbound icmp traffic of a specific type
ingress_security_rules {
protocol = 1
source = "0.0.0.0/0"
stateless = true

icmp_options {
  "type" = 3
  "code" = 4
}

}
}
*/

varialbes.tf
#Basic Settings - Need to be change before any deployments #Tenant information - # Tenant - you tenant variable "ref_tenancy" { type = "string" default = "ocid1.tenancy.oc1..aaaaaaaa3pi2x5yqidqenk4ybimduwxvmlwcuxuetz7k3iuini4jjlmmy36q" description = "Tenancy id" }

#Region and Availability Domain
#Region - wish region do you want to deploy to?
variable "ref_region" {
type = "string"
default = "us-ashburn-1"
description = "The region for Demo Refrence Architeture"
}

#Availability Domain - wish rAD do you want to deploy to?
variable "ref_availability_domain" {
type = "string"
default = "Uocm_IAD-AD-1"
description = "The AD for Demo Refrence Architeture"
}

Deployment user - used to deploy the Demo Reference Architeture

variable "ref_user" {
type = "string"
default = "ocid1.user.oc1..aaaaaaaa7ael4fy6ox4zmjyjqvy5qb4sv5wfmkicr4no3yundyk7w57k5x7a"
description = "Deployment User for Demo Refrence Architeture"
}

#Fingerprint - the fingerprint from the PEM certficate
variable "ref_fingerprint" {
type = "string"
default = "88:b6:8e:45:86:36:fb:3d:c2:50:9e:4a:3a:2c:b4:e2"
description = "Fingerprint from the PEM certficate for Demo Refrence Architeture"
}

#PrivateKey location - point to the location where you have the key file
variable "ref_privatekeylocation" {
type = "string"
default = ".\.oci\oci_api_key.pem"
description = "The full path for the private key file for Demo Refrence Architeture"
}

#Advanced Configuration - only done if you need to change default settings

#Comparments
#Comparment reference for Demo Env
variable "ref_comp_demo" {
type = "string"
default = "Demo_Compartment"
description = "Comparment for Demo Refrence - NOT FOR PROD"
}

#Groups
#Group that have access to the Demo Compartment
variable "ref_group_demo" {
type = "string"
default = "Demo_Group"
description = "Group who have access to Demo Compartment - NOT FOR PROD"
}

#Policies
#Policy Full Access Demo Compartment, give user full access
variable "ref_policy_demo" {
type = "string"
default = "Demo_Group_Full_Access"
description = "Give full access to all the resource in the Demo Compartment- NOT FOR PROD"
}

#VCN
#VCN for the Demo Compartment
variable "ref_vcn_demo" {
type = "string"
default = "Demo_VNC"
description = "VNC for Demo Compartment - NOT FOR PROD"
}

#CIDR - ip range for VNC for the Demo Compartment
variable "ref_vcn_cidr_block_demo" {
type = "string"
default = "192.168.0.0/16"
description = "VNC ip range for Demo Compartment- NOT FOR PROD"
}

#Subnet for the VNC to the Demo Compartment
variable "ref_subnet__demo" {
type = "string"
default = "192.168.0.0/24"
description = "VNC ip range for Demo Compartment - NOT FOR PROD"
}

crash.log

2018/04/18 13:30:20 [INFO] Terraform version: 0.11.7 41e50bd32a8825a84535e353c3674af8ce799161 2018/04/18 13:30:20 [INFO] Go runtime version: go1.10.1 2018/04/18 13:30:20 [INFO] CLI args: []string{"C:\\terraform\\terraform.exe", "apply"} 2018/04/18 13:30:20 [DEBUG] Attempting to open CLI config file: C:\Users\cjacobse\AppData\Roaming\terraform.rc 2018/04/18 13:30:20 Loading CLI configuration from C:\Users\cjacobse\AppData\Roaming\terraform.rc 2018/04/18 13:30:20 [INFO] CLI command args: []string{"apply"} 2018/04/18 13:30:20 [INFO] command: empty terraform config, returning nil 2018/04/18 13:30:20 [DEBUG] command: no data state file found for backend config 2018/04/18 13:30:20 [DEBUG] New state was assigned lineage "07250669-6dee-3acb-c0c6-cb853a052cce" 2018/04/18 13:30:20 [INFO] command: backend initialized: 2018/04/18 13:30:20 [DEBUG] checking for provider in "." 2018/04/18 13:30:20 [DEBUG] checking for provider in "C:\\terraform" 2018/04/18 13:30:20 [DEBUG] found provider "terraform-provider-oci_v2.0.4.exe" 2018/04/18 13:30:20 [DEBUG] found provider "terraform-provider-oci_v2.1.2.exe" 2018/04/18 13:30:20 [DEBUG] found provider "terraform-provider-oci_v2.1.5.exe" 2018/04/18 13:30:20 [DEBUG] checking for provider in ".terraform\\plugins\\windows_amd64" 2018/04/18 13:30:20 [DEBUG] found plugin override in .terraformrc: "oci", "c:\\terraform\\terraform-provider-oci_v2.1.5.exe" 2018/04/18 13:30:20 [DEBUG] found valid plugin: "oci", "0.0.0", "c:\\terraform\\terraform-provider-oci_v2.1.5.exe" 2018/04/18 13:30:20 [DEBUG] checking for provisioner in "." 2018/04/18 13:30:20 [DEBUG] checking for provisioner in "C:\\terraform" 2018/04/18 13:30:20 [DEBUG] checking for provisioner in ".terraform\\plugins\\windows_amd64" 2018/04/18 13:30:20 [INFO] command: backend is not enhanced, wrapping in local 2018/04/18 13:30:20 [INFO] backend/local: starting Apply operation 2018/04/18 13:30:21 [TRACE] Preserving existing state lineage "e3b750ab-1dc3-446f-83a2-ac292b4e838b" 2018/04/18 13:30:21 [TRACE] Preserving existing state lineage "e3b750ab-1dc3-446f-83a2-ac292b4e838b" 2018/04/18 13:30:21 [INFO] terraform: building graph: GraphTypeInput 2018/04/18 13:30:21 [TRACE] ConfigTransformer: Starting for path: [] 2018/04/18 13:30:21 [TRACE] Graph after step *terraform.ConfigTransformer:

oci_identity_compartment.demo_compartment - *terraform.NodeAbstractResource
oci_identity_group.demo_group - *terraform.NodeAbstractResource
oci_identity_policy.demo_policy - *terraform.NodeAbstractResource
2018/04/18 13:30:21 [TRACE] Graph after step *terraform.LocalTransformer:

oci_identity_compartment.demo_compartment - *terraform.NodeAbstractResource
oci_identity_group.demo_group - *terraform.NodeAbstractResource
oci_identity_policy.demo_policy - *terraform.NodeAbstractResource
2018/04/18 13:30:21 [TRACE] Graph after step *terraform.OutputTransformer:

oci_identity_compartment.demo_compartment - *terraform.NodeAbstractResource
oci_identity_group.demo_group - *terraform.NodeAbstractResource
oci_identity_policy.demo_policy - *terraform.NodeAbstractResource
2018/04/18 13:30:21 [TRACE] Graph after step *terraform.OrphanResourceTransformer:

oci_identity_compartment.demo_compartment - *terraform.NodeAbstractResource
oci_identity_group.demo_group - *terraform.NodeAbstractResource
oci_identity_policy.demo_policy - *terraform.NodeAbstractResource
2018/04/18 13:30:21 [TRACE] Graph after step *terraform.OrphanOutputTransformer:

oci_identity_compartment.demo_compartment - *terraform.NodeAbstractResource
oci_identity_group.demo_group - *terraform.NodeAbstractResource
oci_identity_policy.demo_policy - *terraform.NodeAbstractResource
2018/04/18 13:30:21 [TRACE] AttachResourceConfigTransformer: Beginning...
2018/04/18 13:30:21 [TRACE] AttachResourceConfigTransformer: Attach resource config request: oci_identity_compartment.demo_compartment
2018/04/18 13:30:21 [TRACE] Attaching resource config: &config.Resource{Mode:0, Name:"demo_compartment", Type:"oci_identity_compartment", RawCount:(*config.RawConfig)(0xc042120700), RawConfig:(*config.RawConfig)(0xc042120380), Provisioners:[]*config.Provisioner(nil), Provider:"", DependsOn:[]string(nil), Lifecycle:config.ResourceLifecycle{CreateBeforeDestroy:false, PreventDestroy:false, IgnoreChanges:[]string(nil)}}
2018/04/18 13:30:21 [TRACE] AttachResourceConfigTransformer: Attach resource config request: oci_identity_group.demo_group
2018/04/18 13:30:21 [TRACE] Attaching resource config: &config.Resource{Mode:0, Name:"demo_group", Type:"oci_identity_group", RawCount:(*config.RawConfig)(0xc0421208c0), RawConfig:(*config.RawConfig)(0xc042120770), Provisioners:[]*config.Provisioner(nil), Provider:"", DependsOn:[]string(nil), Lifecycle:config.ResourceLifecycle{CreateBeforeDestroy:false, PreventDestroy:false, IgnoreChanges:[]string(nil)}}
2018/04/18 13:30:21 [TRACE] AttachResourceConfigTransformer: Attach resource config request: oci_identity_policy.demo_policy
2018/04/18 13:30:21 [TRACE] Attaching resource config: &config.Resource{Mode:0, Name:"demo_policy", Type:"oci_identity_policy", RawCount:(*config.RawConfig)(0xc042120a80), RawConfig:(*config.RawConfig)(0xc042120930), Provisioners:[]*config.Provisioner(nil), Provider:"", DependsOn:[]string(nil), Lifecycle:config.ResourceLifecycle{CreateBeforeDestroy:false, PreventDestroy:false, IgnoreChanges:[]string(nil)}}
2018/04/18 13:30:21 [TRACE] Graph after step *terraform.AttachResourceConfigTransformer:

oci_identity_compartment.demo_compartment - *terraform.NodeAbstractResource
oci_identity_group.demo_group - *terraform.NodeAbstractResource
oci_identity_policy.demo_policy - *terraform.NodeAbstractResource
2018/04/18 13:30:21 [DEBUG] Resource state not found for "oci_identity_compartment.demo_compartment": oci_identity_compartment.demo_compartment
2018/04/18 13:30:21 [DEBUG] Resource state not found for "oci_identity_group.demo_group": oci_identity_group.demo_group
2018/04/18 13:30:21 [DEBUG] Resource state not found for "oci_identity_policy.demo_policy": oci_identity_policy.demo_policy
2018/04/18 13:30:21 [TRACE] Graph after step *terraform.AttachStateTransformer:

oci_identity_compartment.demo_compartment - *terraform.NodeAbstractResource
oci_identity_group.demo_group - *terraform.NodeAbstractResource
oci_identity_policy.demo_policy - *terraform.NodeAbstractResource
2018/04/18 13:30:21 [TRACE] Graph after step *terraform.RootVariableTransformer:

oci_identity_compartment.demo_compartment - *terraform.NodeAbstractResource
oci_identity_group.demo_group - *terraform.NodeAbstractResource
oci_identity_policy.demo_policy - *terraform.NodeAbstractResource
var.ref_availability_domain - *terraform.NodeRootVariable
var.ref_comp_demo - *terraform.NodeRootVariable
var.ref_fingerprint - *terraform.NodeRootVariable
var.ref_group_demo - *terraform.NodeRootVariable
var.ref_policy_demo - *terraform.NodeRootVariable
var.ref_privatekeylocation - *terraform.NodeRootVariable
var.ref_region - *terraform.NodeRootVariable
var.ref_subnet__demo - *terraform.NodeRootVariable
var.ref_tenancy - *terraform.NodeRootVariable
var.ref_user - *terraform.NodeRootVariable
var.ref_vcn_cidr_block_demo - *terraform.NodeRootVariable
var.ref_vcn_demo - *terraform.NodeRootVariable
2018/04/18 13:30:21 [TRACE] ProviderConfigTransformer: Starting for path: []
2018/04/18 13:30:21 [TRACE] Attach provider request: []string{} oci
2018/04/18 13:30:21 [TRACE] Attaching provider config: *config.ProviderConfig{Name:"oci", Alias:"", Version:"", RawConfig:(*config.RawConfig)(0xc0424700e0)}
2018/04/18 13:30:21 [TRACE] Graph after step *terraform.ProviderConfigTransformer:

oci_identity_compartment.demo_compartment - *terraform.NodeAbstractResource
oci_identity_group.demo_group - *terraform.NodeAbstractResource
oci_identity_policy.demo_policy - *terraform.NodeAbstractResource
provider.oci - *terraform.NodeApplyableProvider
var.ref_availability_domain - *terraform.NodeRootVariable
var.ref_comp_demo - *terraform.NodeRootVariable
var.ref_fingerprint - *terraform.NodeRootVariable
var.ref_group_demo - *terraform.NodeRootVariable
var.ref_policy_demo - *terraform.NodeRootVariable
var.ref_privatekeylocation - *terraform.NodeRootVariable
var.ref_region - *terraform.NodeRootVariable
var.ref_subnet__demo - *terraform.NodeRootVariable
var.ref_tenancy - *terraform.NodeRootVariable
var.ref_user - *terraform.NodeRootVariable
var.ref_vcn_cidr_block_demo - *terraform.NodeRootVariable
var.ref_vcn_demo - *terraform.NodeRootVariable
2018/04/18 13:30:21 [TRACE] Graph after step *terraform.MissingProviderTransformer:

oci_identity_compartment.demo_compartment - *terraform.NodeAbstractResource
oci_identity_group.demo_group - *terraform.NodeAbstractResource
oci_identity_policy.demo_policy - *terraform.NodeAbstractResource
provider.oci - *terraform.NodeApplyableProvider
var.ref_availability_domain - *terraform.NodeRootVariable
var.ref_comp_demo - *terraform.NodeRootVariable
var.ref_fingerprint - *terraform.NodeRootVariable
var.ref_group_demo - *terraform.NodeRootVariable
var.ref_policy_demo - *terraform.NodeRootVariable
var.ref_privatekeylocation - *terraform.NodeRootVariable
var.ref_region - *terraform.NodeRootVariable
var.ref_subnet__demo - *terraform.NodeRootVariable
var.ref_tenancy - *terraform.NodeRootVariable
var.ref_user - *terraform.NodeRootVariable
var.ref_vcn_cidr_block_demo - *terraform.NodeRootVariable
var.ref_vcn_demo - *terraform.NodeRootVariable
2018/04/18 13:30:21 [DEBUG] resource oci_identity_group.demo_group using provider provider.oci
2018/04/18 13:30:21 [DEBUG] resource oci_identity_compartment.demo_compartment using provider provider.oci
2018/04/18 13:30:21 [DEBUG] resource oci_identity_policy.demo_policy using provider provider.oci
2018/04/18 13:30:21 [TRACE] Graph after step *terraform.ProviderTransformer:

oci_identity_compartment.demo_compartment - *terraform.NodeAbstractResource
provider.oci - *terraform.NodeApplyableProvider
oci_identity_group.demo_group - *terraform.NodeAbstractResource
provider.oci - *terraform.NodeApplyableProvider
oci_identity_policy.demo_policy - *terraform.NodeAbstractResource
provider.oci - *terraform.NodeApplyableProvider
provider.oci - *terraform.NodeApplyableProvider
var.ref_availability_domain - *terraform.NodeRootVariable
var.ref_comp_demo - *terraform.NodeRootVariable
var.ref_fingerprint - *terraform.NodeRootVariable
var.ref_group_demo - *terraform.NodeRootVariable
var.ref_policy_demo - *terraform.NodeRootVariable
var.ref_privatekeylocation - *terraform.NodeRootVariable
var.ref_region - *terraform.NodeRootVariable
var.ref_subnet__demo - *terraform.NodeRootVariable
var.ref_tenancy - *terraform.NodeRootVariable
var.ref_user - *terraform.NodeRootVariable
var.ref_vcn_cidr_block_demo - *terraform.NodeRootVariable
var.ref_vcn_demo - *terraform.NodeRootVariable
2018/04/18 13:30:21 [TRACE] Graph after step *terraform.PruneProviderTransformer:

oci_identity_compartment.demo_compartment - *terraform.NodeAbstractResource
provider.oci - *terraform.NodeApplyableProvider
oci_identity_group.demo_group - *terraform.NodeAbstractResource
provider.oci - *terraform.NodeApplyableProvider
oci_identity_policy.demo_policy - *terraform.NodeAbstractResource
provider.oci - *terraform.NodeApplyableProvider
provider.oci - *terraform.NodeApplyableProvider
var.ref_availability_domain - *terraform.NodeRootVariable
var.ref_comp_demo - *terraform.NodeRootVariable
var.ref_fingerprint - *terraform.NodeRootVariable
var.ref_group_demo - *terraform.NodeRootVariable
var.ref_policy_demo - *terraform.NodeRootVariable
var.ref_privatekeylocation - *terraform.NodeRootVariable
var.ref_region - *terraform.NodeRootVariable
var.ref_subnet__demo - *terraform.NodeRootVariable
var.ref_tenancy - *terraform.NodeRootVariable
var.ref_user - *terraform.NodeRootVariable
var.ref_vcn_cidr_block_demo - *terraform.NodeRootVariable
var.ref_vcn_demo - *terraform.NodeRootVariable
2018/04/18 13:30:21 [TRACE] Graph after step *terraform.ParentProviderTransformer:

oci_identity_compartment.demo_compartment - *terraform.NodeAbstractResource
provider.oci - *terraform.NodeApplyableProvider
oci_identity_group.demo_group - *terraform.NodeAbstractResource
provider.oci - *terraform.NodeApplyableProvider
oci_identity_policy.demo_policy - *terraform.NodeAbstractResource
provider.oci - *terraform.NodeApplyableProvider
provider.oci - *terraform.NodeApplyableProvider
var.ref_availability_domain - *terraform.NodeRootVariable
var.ref_comp_demo - *terraform.NodeRootVariable
var.ref_fingerprint - *terraform.NodeRootVariable
var.ref_group_demo - *terraform.NodeRootVariable
var.ref_policy_demo - *terraform.NodeRootVariable
var.ref_privatekeylocation - *terraform.NodeRootVariable
var.ref_region - *terraform.NodeRootVariable
var.ref_subnet__demo - *terraform.NodeRootVariable
var.ref_tenancy - *terraform.NodeRootVariable
var.ref_user - *terraform.NodeRootVariable
var.ref_vcn_cidr_block_demo - *terraform.NodeRootVariable
var.ref_vcn_demo - *terraform.NodeRootVariable
2018/04/18 13:30:21 [TRACE] Graph after step *terraform.graphTransformerMulti:

oci_identity_compartment.demo_compartment - *terraform.NodeAbstractResource
provider.oci - *terraform.NodeApplyableProvider
oci_identity_group.demo_group - *terraform.NodeAbstractResource
provider.oci - *terraform.NodeApplyableProvider
oci_identity_policy.demo_policy - *terraform.NodeAbstractResource
provider.oci - *terraform.NodeApplyableProvider
provider.oci - *terraform.NodeApplyableProvider
var.ref_availability_domain - *terraform.NodeRootVariable
var.ref_comp_demo - *terraform.NodeRootVariable
var.ref_fingerprint - *terraform.NodeRootVariable
var.ref_group_demo - *terraform.NodeRootVariable
var.ref_policy_demo - *terraform.NodeRootVariable
var.ref_privatekeylocation - *terraform.NodeRootVariable
var.ref_region - *terraform.NodeRootVariable
var.ref_subnet__demo - *terraform.NodeRootVariable
var.ref_tenancy - *terraform.NodeRootVariable
var.ref_user - *terraform.NodeRootVariable
var.ref_vcn_cidr_block_demo - *terraform.NodeRootVariable
var.ref_vcn_demo - *terraform.NodeRootVariable
2018/04/18 13:30:21 [TRACE] Graph after step *terraform.ModuleVariableTransformer:

oci_identity_compartment.demo_compartment - *terraform.NodeAbstractResource
provider.oci - *terraform.NodeApplyableProvider
oci_identity_group.demo_group - *terraform.NodeAbstractResource
provider.oci - *terraform.NodeApplyableProvider
oci_identity_policy.demo_policy - *terraform.NodeAbstractResource
provider.oci - *terraform.NodeApplyableProvider
provider.oci - *terraform.NodeApplyableProvider
var.ref_availability_domain - *terraform.NodeRootVariable
var.ref_comp_demo - *terraform.NodeRootVariable
var.ref_fingerprint - *terraform.NodeRootVariable
var.ref_group_demo - *terraform.NodeRootVariable
var.ref_policy_demo - *terraform.NodeRootVariable
var.ref_privatekeylocation - *terraform.NodeRootVariable
var.ref_region - *terraform.NodeRootVariable
var.ref_subnet__demo - *terraform.NodeRootVariable
var.ref_tenancy - *terraform.NodeRootVariable
var.ref_user - *terraform.NodeRootVariable
var.ref_vcn_cidr_block_demo - *terraform.NodeRootVariable
var.ref_vcn_demo - *terraform.NodeRootVariable
2018/04/18 13:30:21 [TRACE] Graph after step *terraform.RemovedModuleTransformer:

oci_identity_compartment.demo_compartment - *terraform.NodeAbstractResource
provider.oci - *terraform.NodeApplyableProvider
oci_identity_group.demo_group - *terraform.NodeAbstractResource
provider.oci - *terraform.NodeApplyableProvider
oci_identity_policy.demo_policy - *terraform.NodeAbstractResource
provider.oci - *terraform.NodeApplyableProvider
provider.oci - *terraform.NodeApplyableProvider
var.ref_availability_domain - *terraform.NodeRootVariable
var.ref_comp_demo - *terraform.NodeRootVariable
var.ref_fingerprint - *terraform.NodeRootVariable
var.ref_group_demo - *terraform.NodeRootVariable
var.ref_policy_demo - *terraform.NodeRootVariable
var.ref_privatekeylocation - *terraform.NodeRootVariable
var.ref_region - *terraform.NodeRootVariable
var.ref_subnet__demo - *terraform.NodeRootVariable
var.ref_tenancy - *terraform.NodeRootVariable
var.ref_user - *terraform.NodeRootVariable
var.ref_vcn_cidr_block_demo - *terraform.NodeRootVariable
var.ref_vcn_demo - *terraform.NodeRootVariable
2018/04/18 13:30:21 [DEBUG] ReferenceTransformer: "var.ref_availability_domain" references: []
2018/04/18 13:30:21 [DEBUG] ReferenceTransformer: "var.ref_privatekeylocation" references: []
2018/04/18 13:30:21 [DEBUG] ReferenceTransformer: "var.ref_vcn_demo" references: []
2018/04/18 13:30:21 [DEBUG] ReferenceTransformer: "oci_identity_compartment.demo_compartment" references: [var.ref_comp_demo var.ref_tenancy]
2018/04/18 13:30:21 [DEBUG] ReferenceTransformer: "var.ref_user" references: []
2018/04/18 13:30:21 [DEBUG] ReferenceTransformer: "var.ref_group_demo" references: []
2018/04/18 13:30:21 [DEBUG] ReferenceTransformer: "var.ref_policy_demo" references: []
2018/04/18 13:30:21 [DEBUG] ReferenceTransformer: "var.ref_vcn_cidr_block_demo" references: []
2018/04/18 13:30:21 [DEBUG] ReferenceTransformer: "var.ref_subnet__demo" references: []
2018/04/18 13:30:21 [DEBUG] ReferenceTransformer: "oci_identity_policy.demo_policy" references: [oci_identity_compartment.demo_compartment var.ref_policy_demo]
2018/04/18 13:30:21 [DEBUG] ReferenceTransformer: "var.ref_fingerprint" references: []
2018/04/18 13:30:21 [DEBUG] ReferenceTransformer: "var.ref_comp_demo" references: []
2018/04/18 13:30:21 [DEBUG] ReferenceTransformer: "oci_identity_group.demo_group" references: [oci_identity_compartment.demo_compartment var.ref_group_demo]
2018/04/18 13:30:21 [DEBUG] ReferenceTransformer: "var.ref_tenancy" references: []
2018/04/18 13:30:21 [DEBUG] ReferenceTransformer: "var.ref_region" references: []
2018/04/18 13:30:21 [DEBUG] ReferenceTransformer: "provider.oci" references: [var.ref_privatekeylocation var.ref_region var.ref_tenancy var.ref_user var.ref_fingerprint]
2018/04/18 13:30:21 [TRACE] Graph after step *terraform.ReferenceTransformer:

oci_identity_compartment.demo_compartment - *terraform.NodeAbstractResource
provider.oci - *terraform.NodeApplyableProvider
var.ref_comp_demo - *terraform.NodeRootVariable
var.ref_tenancy - *terraform.NodeRootVariable
oci_identity_group.demo_group - *terraform.NodeAbstractResource
oci_identity_compartment.demo_compartment - *terraform.NodeAbstractResource
provider.oci - *terraform.NodeApplyableProvider
var.ref_group_demo - *terraform.NodeRootVariable
oci_identity_policy.demo_policy - *terraform.NodeAbstractResource
oci_identity_compartment.demo_compartment - *terraform.NodeAbstractResource
provider.oci - *terraform.NodeApplyableProvider
var.ref_policy_demo - *terraform.NodeRootVariable
provider.oci - *terraform.NodeApplyableProvider
var.ref_fingerprint - *terraform.NodeRootVariable
var.ref_privatekeylocation - *terraform.NodeRootVariable
var.ref_region - *terraform.NodeRootVariable
var.ref_tenancy - *terraform.NodeRootVariable
var.ref_user - *terraform.NodeRootVariable
var.ref_availability_domain - *terraform.NodeRootVariable
var.ref_comp_demo - *terraform.NodeRootVariable
var.ref_fingerprint - *terraform.NodeRootVariable
var.ref_group_demo - *terraform.NodeRootVariable
var.ref_policy_demo - *terraform.NodeRootVariable
var.ref_privatekeylocation - *terraform.NodeRootVariable
var.ref_region - *terraform.NodeRootVariable
var.ref_subnet__demo - *terraform.NodeRootVariable
var.ref_tenancy - *terraform.NodeRootVariable
var.ref_user - *terraform.NodeRootVariable
var.ref_vcn_cidr_block_demo - *terraform.NodeRootVariable
var.ref_vcn_demo - *terraform.NodeRootVariable
2018/04/18 13:30:21 [TRACE] Graph after step *terraform.CountBoundaryTransformer:

meta.count-boundary (count boundary fixup) - *terraform.NodeCountBoundary
oci_identity_compartment.demo_compartment - *terraform.NodeAbstractResource
oci_identity_group.demo_group - *terraform.NodeAbstractResource
oci_identity_policy.demo_policy - *terraform.NodeAbstractResource
provider.oci - *terraform.NodeApplyableProvider
var.ref_availability_domain - *terraform.NodeRootVariable
var.ref_comp_demo - *terraform.NodeRootVariable
var.ref_fingerprint - *terraform.NodeRootVariable
var.ref_group_demo - *terraform.NodeRootVariable
var.ref_policy_demo - *terraform.NodeRootVariable
var.ref_privatekeylocation - *terraform.NodeRootVariable
var.ref_region - *terraform.NodeRootVariable
var.ref_subnet__demo - *terraform.NodeRootVariable
var.ref_tenancy - *terraform.NodeRootVariable
var.ref_user - *terraform.NodeRootVariable
var.ref_vcn_cidr_block_demo - *terraform.NodeRootVariable
var.ref_vcn_demo - *terraform.NodeRootVariable
oci_identity_compartment.demo_compartment - *terraform.NodeAbstractResource
provider.oci - *terraform.NodeApplyableProvider
var.ref_comp_demo - *terraform.NodeRootVariable
var.ref_tenancy - *terraform.NodeRootVariable
oci_identity_group.demo_group - *terraform.NodeAbstractResource
oci_identity_compartment.demo_compartment - *terraform.NodeAbstractResource
provider.oci - *terraform.NodeApplyableProvider
var.ref_group_demo - *terraform.NodeRootVariable
oci_identity_policy.demo_policy - *terraform.NodeAbstractResource
oci_identity_compartment.demo_compartment - *terraform.NodeAbstractResource
provider.oci - *terraform.NodeApplyableProvider
var.ref_policy_demo - *terraform.NodeRootVariable
provider.oci - *terraform.NodeApplyableProvider
var.ref_fingerprint - *terraform.NodeRootVariable
var.ref_privatekeylocation - *terraform.NodeRootVariable
var.ref_region - *terraform.NodeRootVariable
var.ref_tenancy - *terraform.NodeRootVariable
var.ref_user - *terraform.NodeRootVariable
var.ref_availability_domain - *terraform.NodeRootVariable
var.ref_comp_demo - *terraform.NodeRootVariable
var.ref_fingerprint - *terraform.NodeRootVariable
var.ref_group_demo - *terraform.NodeRootVariable
var.ref_policy_demo - *terraform.NodeRootVariable
var.ref_privatekeylocation - *terraform.NodeRootVariable
var.ref_region - *terraform.NodeRootVariable
var.ref_subnet__demo - *terraform.NodeRootVariable
var.ref_tenancy - *terraform.NodeRootVariable
var.ref_user - *terraform.NodeRootVariable
var.ref_vcn_cidr_block_demo - *terraform.NodeRootVariable
var.ref_vcn_demo - *terraform.NodeRootVariable
2018/04/18 13:30:21 [TRACE] Graph after step *terraform.TargetsTransformer:

meta.count-boundary (count boundary fixup) - *terraform.NodeCountBoundary
oci_identity_compartment.demo_compartment - *terraform.NodeAbstractResource
oci_identity_group.demo_group - *terraform.NodeAbstractResource
oci_identity_policy.demo_policy - *terraform.NodeAbstractResource
provider.oci - *terraform.NodeApplyableProvider
var.ref_availability_domain - *terraform.NodeRootVariable
var.ref_comp_demo - *terraform.NodeRootVariable
var.ref_fingerprint - *terraform.NodeRootVariable
var.ref_group_demo - *terraform.NodeRootVariable
var.ref_policy_demo - *terraform.NodeRootVariable
var.ref_privatekeylocation - *terraform.NodeRootVariable
var.ref_region - *terraform.NodeRootVariable
var.ref_subnet__demo - *terraform.NodeRootVariable
var.ref_tenancy - *terraform.NodeRootVariable
var.ref_user - *terraform.NodeRootVariable
var.ref_vcn_cidr_block_demo - *terraform.NodeRootVariable
var.ref_vcn_demo - *terraform.NodeRootVariable
oci_identity_compartment.demo_compartment - *terraform.NodeAbstractResource
provider.oci - *terraform.NodeApplyableProvider
var.ref_comp_demo - *terraform.NodeRootVariable
var.ref_tenancy - *terraform.NodeRootVariable
oci_identity_group.demo_group - *terraform.NodeAbstractResource
oci_identity_compartment.demo_compartment - *terraform.NodeAbstractResource
provider.oci - *terraform.NodeApplyableProvider
var.ref_group_demo - *terraform.NodeRootVariable
oci_identity_policy.demo_policy - *terraform.NodeAbstractResource
oci_identity_compartment.demo_compartment - *terraform.NodeAbstractResource
provider.oci - *terraform.NodeApplyableProvider
var.ref_policy_demo - *terraform.NodeRootVariable
provider.oci - *terraform.NodeApplyableProvider
var.ref_fingerprint - *terraform.NodeRootVariable
var.ref_privatekeylocation - *terraform.NodeRootVariable
var.ref_region - *terraform.NodeRootVariable
var.ref_tenancy - *terraform.NodeRootVariable
var.ref_user - *terraform.NodeRootVariable
var.ref_availability_domain - *terraform.NodeRootVariable
var.ref_comp_demo - *terraform.NodeRootVariable
var.ref_fingerprint - *terraform.NodeRootVariable
var.ref_group_demo - *terraform.NodeRootVariable
var.ref_policy_demo - *terraform.NodeRootVariable
var.ref_privatekeylocation - *terraform.NodeRootVariable
var.ref_region - *terraform.NodeRootVariable
var.ref_subnet__demo - *terraform.NodeRootVariable
var.ref_tenancy - *terraform.NodeRootVariable
var.ref_user - *terraform.NodeRootVariable
var.ref_vcn_cidr_block_demo - *terraform.NodeRootVariable
var.ref_vcn_demo - *terraform.NodeRootVariable
2018/04/18 13:30:21 [TRACE] Graph after step *terraform.CloseProviderTransformer:

meta.count-boundary (count boundary fixup) - *terraform.NodeCountBoundary
oci_identity_compartment.demo_compartment - *terraform.NodeAbstractResource
oci_identity_group.demo_group - *terraform.NodeAbstractResource
oci_identity_policy.demo_policy - *terraform.NodeAbstractResource
provider.oci - *terraform.NodeApplyableProvider
var.ref_availability_domain - *terraform.NodeRootVariable
var.ref_comp_demo - *terraform.NodeRootVariable
var.ref_fingerprint - *terraform.NodeRootVariable
var.ref_group_demo - *terraform.NodeRootVariable
var.ref_policy_demo - *terraform.NodeRootVariable
var.ref_privatekeylocation - *terraform.NodeRootVariable
var.ref_region - *terraform.NodeRootVariable
var.ref_subnet__demo - *terraform.NodeRootVariable
var.ref_tenancy - *terraform.NodeRootVariable
var.ref_user - *terraform.NodeRootVariable
var.ref_vcn_cidr_block_demo - *terraform.NodeRootVariable
var.ref_vcn_demo - *terraform.NodeRootVariable
oci_identity_compartment.demo_compartment - *terraform.NodeAbstractResource
provider.oci - *terraform.NodeApplyableProvider
var.ref_comp_demo - *terraform.NodeRootVariable
var.ref_tenancy - *terraform.NodeRootVariable
oci_identity_group.demo_group - *terraform.NodeAbstractResource
oci_identity_compartment.demo_compartment - *terraform.NodeAbstractResource
provider.oci - *terraform.NodeApplyableProvider
var.ref_group_demo - *terraform.NodeRootVariable
oci_identity_policy.demo_policy - *terraform.NodeAbstractResource
oci_identity_compartment.demo_compartment - *terraform.NodeAbstractResource
provider.oci - *terraform.NodeApplyableProvider
var.ref_policy_demo - *terraform.NodeRootVariable
provider.oci - *terraform.NodeApplyableProvider
var.ref_fingerprint - *terraform.NodeRootVariable
var.ref_privatekeylocation - *terraform.NodeRootVariable
var.ref_region - *terraform.NodeRootVariable
var.ref_tenancy - *terraform.NodeRootVariable
var.ref_user - *terraform.NodeRootVariable
provider.oci (close) - *terraform.graphNodeCloseProvider
oci_identity_compartment.demo_compartment - *terraform.NodeAbstractResource
oci_identity_group.demo_group - *terraform.NodeAbstractResource
oci_identity_policy.demo_policy - *terraform.NodeAbstractResource
provider.oci - *terraform.NodeApplyableProvider
var.ref_availability_domain - *terraform.NodeRootVariable
var.ref_comp_demo - *terraform.NodeRootVariable
var.ref_fingerprint - *terraform.NodeRootVariable
var.ref_group_demo - *terraform.NodeRootVariable
var.ref_policy_demo - *terraform.NodeRootVariable
var.ref_privatekeylocation - *terraform.NodeRootVariable
var.ref_region - *terraform.NodeRootVariable
var.ref_subnet__demo - *terraform.NodeRootVariable
var.ref_tenancy - *terraform.NodeRootVariable
var.ref_user - *terraform.NodeRootVariable
var.ref_vcn_cidr_block_demo - *terraform.NodeRootVariable
var.ref_vcn_demo - *terraform.NodeRootVariable
2018/04/18 13:30:21 [TRACE] Graph after step *terraform.CloseProvisionerTransformer:

meta.count-boundary (count boundary fixup) - *terraform.NodeCountBoundary
oci_identity_compartment.demo_compartment - *terraform.NodeAbstractResource
oci_identity_group.demo_group - *terraform.NodeAbstractResource
oci_identity_policy.demo_policy - *terraform.NodeAbstractResource
provider.oci - *terraform.NodeApplyableProvider
var.ref_availability_domain - *terraform.NodeRootVariable
var.ref_comp_demo - *terraform.NodeRootVariable
var.ref_fingerprint - *terraform.NodeRootVariable
var.ref_group_demo - *terraform.NodeRootVariable
var.ref_policy_demo - *terraform.NodeRootVariable
var.ref_privatekeylocation - *terraform.NodeRootVariable
var.ref_region - *terraform.NodeRootVariable
var.ref_subnet__demo - *terraform.NodeRootVariable
var.ref_tenancy - *terraform.NodeRootVariable
var.ref_user - *terraform.NodeRootVariable
var.ref_vcn_cidr_block_demo - *terraform.NodeRootVariable
var.ref_vcn_demo - *terraform.NodeRootVariable
oci_identity_compartment.demo_compartment - *terraform.NodeAbstractResource
provider.oci - *terraform.NodeApplyableProvider
var.ref_comp_demo - *terraform.NodeRootVariable
var.ref_tenancy - *terraform.NodeRootVariable
oci_identity_group.demo_group - *terraform.NodeAbstractResource
oci_identity_compartment.demo_compartment - *terraform.NodeAbstractResource
provider.oci - *terraform.NodeApplyableProvider
var.ref_group_demo - *terraform.NodeRootVariable
oci_identity_policy.demo_policy - *terraform.NodeAbstractResource
oci_identity_compartment.demo_compartment - *terraform.NodeAbstractResource
provider.oci - *terraform.NodeApplyableProvider
var.ref_policy_demo - *terraform.NodeRootVariable
provider.oci - *terraform.NodeApplyableProvider
var.ref_fingerprint - *terraform.NodeRootVariable
var.ref_privatekeylocation - *terraform.NodeRootVariable
var.ref_region - *terraform.NodeRootVariable
var.ref_tenancy - *terraform.NodeRootVariable
var.ref_user - *terraform.NodeRootVariable
provider.oci (close) - *terraform.graphNodeCloseProvider
oci_identity_compartment.demo_compartment - *terraform.NodeAbstractResource
oci_identity_group.demo_group - *terraform.NodeAbstractResource
oci_identity_policy.demo_policy - *terraform.NodeAbstractResource
provider.oci - *terraform.NodeApplyableProvider
var.ref_availability_domain - *terraform.NodeRootVariable
var.ref_comp_demo - *terraform.NodeRootVariable
var.ref_fingerprint - *terraform.NodeRootVariable
var.ref_group_demo - *terraform.NodeRootVariable
var.ref_policy_demo - *terraform.NodeRootVariable
var.ref_privatekeylocation - *terraform.NodeRootVariable
var.ref_region - *terraform.NodeRootVariable
var.ref_subnet__demo - *terraform.NodeRootVariable
var.ref_tenancy - *terraform.NodeRootVariable
var.ref_user - *terraform.NodeRootVariable
var.ref_vcn_cidr_block_demo - *terraform.NodeRootVariable
var.ref_vcn_demo - *terraform.NodeRootVariable
2018/04/18 13:30:21 [TRACE] Graph after step *terraform.RootTransformer:

meta.count-boundary (count boundary fixup) - *terraform.NodeCountBoundary
oci_identity_compartment.demo_compartment - *terraform.NodeAbstractResource
oci_identity_group.demo_group - *terraform.NodeAbstractResource
oci_identity_policy.demo_policy - *terraform.NodeAbstractResource
provider.oci - *terraform.NodeApplyableProvider
var.ref_availability_domain - *terraform.NodeRootVariable
var.ref_comp_demo - *terraform.NodeRootVariable
var.ref_fingerprint - *terraform.NodeRootVariable
var.ref_group_demo - *terraform.NodeRootVariable
var.ref_policy_demo - *terraform.NodeRootVariable
var.ref_privatekeylocation - *terraform.NodeRootVariable
var.ref_region - *terraform.NodeRootVariable
var.ref_subnet__demo - *terraform.NodeRootVariable
var.ref_tenancy - *terraform.NodeRootVariable
var.ref_user - *terraform.NodeRootVariable
var.ref_vcn_cidr_block_demo - *terraform.NodeRootVariable
var.ref_vcn_demo - *terraform.NodeRootVariable
oci_identity_compartment.demo_compartment - *terraform.NodeAbstractResource
provider.oci - *terraform.NodeApplyableProvider
var.ref_comp_demo - *terraform.NodeRootVariable
var.ref_tenancy - *terraform.NodeRootVariable
oci_identity_group.demo_group - *terraform.NodeAbstractResource
oci_identity_compartment.demo_compartment - *terraform.NodeAbstractResource
provider.oci - *terraform.NodeApplyableProvider
var.ref_group_demo - *terraform.NodeRootVariable
oci_identity_policy.demo_policy - *terraform.NodeAbstractResource
oci_identity_compartment.demo_compartment - *terraform.NodeAbstractResource
provider.oci - *terraform.NodeApplyableProvider
var.ref_policy_demo - *terraform.NodeRootVariable
provider.oci - *terraform.NodeApplyableProvider
var.ref_fingerprint - *terraform.NodeRootVariable
var.ref_privatekeylocation - *terraform.NodeRootVariable
var.ref_region - *terraform.NodeRootVariable
var.ref_tenancy - *terraform.NodeRootVariable
var.ref_user - *terraform.NodeRootVariable
provider.oci (close) - *terraform.graphNodeCloseProvider
oci_identity_compartment.demo_compartment - *terraform.NodeAbstractResource
oci_identity_group.demo_group - *terraform.NodeAbstractResource
oci_identity_policy.demo_policy - *terraform.NodeAbstractResource
provider.oci - *terraform.NodeApplyableProvider
root - terraform.graphNodeRoot
meta.count-boundary (count boundary fixup) - *terraform.NodeCountBoundary
provider.oci (close) - *terraform.graphNodeCloseProvider
var.ref_availability_domain - *terraform.NodeRootVariable
var.ref_comp_demo - *terraform.NodeRootVariable
var.ref_fingerprint - *terraform.NodeRootVariable
var.ref_group_demo - *terraform.NodeRootVariable
var.ref_policy_demo - *terraform.NodeRootVariable
var.ref_privatekeylocation - *terraform.NodeRootVariable
var.ref_region - *terraform.NodeRootVariable
var.ref_subnet__demo - *terraform.NodeRootVariable
var.ref_tenancy - *terraform.NodeRootVariable
var.ref_user - *terraform.NodeRootVariable
var.ref_vcn_cidr_block_demo - *terraform.NodeRootVariable
var.ref_vcn_demo - *terraform.NodeRootVariable
2018/04/18 13:30:21 [TRACE] Graph after step *terraform.TransitiveReductionTransformer:

meta.count-boundary (count boundary fixup) - *terraform.NodeCountBoundary
oci_identity_group.demo_group - *terraform.NodeAbstractResource
oci_identity_policy.demo_policy - *terraform.NodeAbstractResource
var.ref_availability_domain - *terraform.NodeRootVariable
var.ref_subnet__demo - *terraform.NodeRootVariable
var.ref_vcn_cidr_block_demo - *terraform.NodeRootVariable
var.ref_vcn_demo - *terraform.NodeRootVariable
oci_identity_compartment.demo_compartment - *terraform.NodeAbstractResource
provider.oci - *terraform.NodeApplyableProvider
var.ref_comp_demo - *terraform.NodeRootVariable
oci_identity_group.demo_group - *terraform.NodeAbstractResource
oci_identity_compartment.demo_compartment - *terraform.NodeAbstractResource
var.ref_group_demo - *terraform.NodeRootVariable
oci_identity_policy.demo_policy - *terraform.NodeAbstractResource
oci_identity_compartment.demo_compartment - *terraform.NodeAbstractResource
var.ref_policy_demo - *terraform.NodeRootVariable
provider.oci - *terraform.NodeApplyableProvider
var.ref_fingerprint - *terraform.NodeRootVariable
var.ref_privatekeylocation - *terraform.NodeRootVariable
var.ref_region - *terraform.NodeRootVariable
var.ref_tenancy - *terraform.NodeRootVariable
var.ref_user - *terraform.NodeRootVariable
provider.oci (close) - *terraform.graphNodeCloseProvider
oci_identity_group.demo_group - *terraform.NodeAbstractResource
oci_identity_policy.demo_policy - *terraform.NodeAbstractResource
root - terraform.graphNodeRoot
meta.count-boundary (count boundary fixup) - *terraform.NodeCountBoundary
provider.oci (close) - *terraform.graphNodeCloseProvider
var.ref_availability_domain - *terraform.NodeRootVariable
var.ref_comp_demo - *terraform.NodeRootVariable
var.ref_fingerprint - *terraform.NodeRootVariable
var.ref_group_demo - *terraform.NodeRootVariable
var.ref_policy_demo - *terraform.NodeRootVariable
var.ref_privatekeylocation - *terraform.NodeRootVariable
var.ref_region - *terraform.NodeRootVariable
var.ref_subnet__demo - *terraform.NodeRootVariable
var.ref_tenancy - *terraform.NodeRootVariable
var.ref_user - *terraform.NodeRootVariable
var.ref_vcn_cidr_block_demo - *terraform.NodeRootVariable
var.ref_vcn_demo - *terraform.NodeRootVariable
2018/04/18 13:30:21 [DEBUG] Starting graph walk: walkInput
2018/04/18 13:30:21 [TRACE] dag/walk: added new vertex: "var.ref_comp_demo"
2018/04/18 13:30:21 [TRACE] dag/walk: added new vertex: "var.ref_privatekeylocation"
2018/04/18 13:30:21 [TRACE] dag/walk: added new vertex: "var.ref_policy_demo"
2018/04/18 13:30:21 [TRACE] dag/walk: added new vertex: "var.ref_vcn_cidr_block_demo"
2018/04/18 13:30:21 [TRACE] dag/walk: added new vertex: "oci_identity_policy.demo_policy"
2018/04/18 13:30:21 [TRACE] dag/walk: added new vertex: "var.ref_fingerprint"
2018/04/18 13:30:21 [TRACE] dag/walk: added new vertex: "var.ref_vcn_demo"
2018/04/18 13:30:21 [TRACE] dag/walk: added new vertex: "var.ref_subnet__demo"
2018/04/18 13:30:21 [TRACE] dag/walk: added new vertex: "oci_identity_compartment.demo_compartment"
2018/04/18 13:30:21 [TRACE] dag/walk: added new vertex: "var.ref_user"
2018/04/18 13:30:21 [TRACE] dag/walk: added new vertex: "provider.oci"
2018/04/18 13:30:21 [TRACE] dag/walk: added new vertex: "oci_identity_group.demo_group"
2018/04/18 13:30:21 [TRACE] dag/walk: added new vertex: "var.ref_availability_domain"
2018/04/18 13:30:21 [TRACE] dag/walk: added new vertex: "var.ref_group_demo"
2018/04/18 13:30:21 [TRACE] dag/walk: added new vertex: "meta.count-boundary (count boundary fixup)"
2018/04/18 13:30:21 [TRACE] dag/walk: added new vertex: "var.ref_region"
2018/04/18 13:30:21 [TRACE] dag/walk: added new vertex: "var.ref_tenancy"
2018/04/18 13:30:21 [TRACE] dag/walk: added new vertex: "root"
2018/04/18 13:30:21 [TRACE] dag/walk: added new vertex: "provider.oci (close)"
2018/04/18 13:30:21 [TRACE] dag/walk: added edge: "provider.oci" waiting on "var.ref_privatekeylocation"
2018/04/18 13:30:21 [TRACE] dag/walk: added edge: "root" waiting on "provider.oci (close)"
2018/04/18 13:30:21 [TRACE] dag/walk: added edge: "oci_identity_compartment.demo_compartment" waiting on "provider.oci"
2018/04/18 13:30:21 [TRACE] dag/walk: added edge: "meta.count-boundary (count boundary fixup)" waiting on "var.ref_vcn_cidr_block_demo"
2018/04/18 13:30:21 [TRACE] dag/walk: added edge: "meta.count-boundary (count boundary fixup)" waiting on "var.ref_subnet__demo"
2018/04/18 13:30:21 [TRACE] dag/walk: added edge: "oci_identity_compartment.demo_compartment" waiting on "var.ref_comp_demo"
2018/04/18 13:30:21 [TRACE] dag/walk: added edge: "provider.oci (close)" waiting on "oci_identity_policy.demo_policy"
2018/04/18 13:30:21 [TRACE] dag/walk: added edge: "oci_identity_policy.demo_policy" waiting on "oci_identity_compartment.demo_compartment"
2018/04/18 13:30:21 [TRACE] dag/walk: added edge: "provider.oci (close)" waiting on "oci_identity_group.demo_group"
2018/04/18 13:30:21 [TRACE] dag/walk: added edge: "provider.oci" waiting on "var.ref_tenancy"
2018/04/18 13:30:21 [TRACE] dag/walk: added edge: "provider.oci" waiting on "var.ref_fingerprint"
2018/04/18 13:30:21 [TRACE] dag/walk: added edge: "meta.count-boundary (count boundary fixup)" waiting on "oci_identity_group.demo_group"
2018/04/18 13:30:21 [TRACE] dag/walk: added edge: "meta.count-boundary (count boundary fixup)" waiting on "oci_identity_policy.demo_policy"
2018/04/18 13:30:21 [TRACE] dag/walk: added edge: "provider.oci" waiting on "var.ref_region"
2018/04/18 13:30:21 [TRACE] dag/walk: added edge: "provider.oci" waiting on "var.ref_user"
2018/04/18 13:30:21 [TRACE] dag/walk: added edge: "meta.count-boundary (count boundary fixup)" waiting on "var.ref_vcn_demo"
2018/04/18 13:30:21 [TRACE] dag/walk: added edge: "oci_identity_group.demo_group" waiting on "oci_identity_compartment.demo_compartment"
2018/04/18 13:30:21 [TRACE] dag/walk: added edge: "oci_identity_policy.demo_policy" waiting on "var.ref_policy_demo"
2018/04/18 13:30:21 [TRACE] dag/walk: added edge: "oci_identity_group.demo_group" waiting on "var.ref_group_demo"
2018/04/18 13:30:21 [TRACE] dag/walk: added edge: "meta.count-boundary (count boundary fixup)" waiting on "var.ref_availability_domain"
2018/04/18 13:30:21 [TRACE] dag/walk: added edge: "root" waiting on "meta.count-boundary (count boundary fixup)"
2018/04/18 13:30:21 [TRACE] dag/walk: dependencies changed for "provider.oci", sending new deps
2018/04/18 13:30:21 [TRACE] dag/walk: dependencies changed for "root", sending new deps
2018/04/18 13:30:21 [TRACE] dag/walk: dependencies changed for "oci_identity_compartment.demo_compartment", sending new deps
2018/04/18 13:30:21 [TRACE] dag/walk: dependencies changed for "meta.count-boundary (count boundary fixup)", sending new deps
2018/04/18 13:30:21 [TRACE] dag/walk: dependencies changed for "provider.oci (close)", sending new deps
2018/04/18 13:30:21 [TRACE] dag/walk: dependencies changed for "oci_identity_policy.demo_policy", sending new deps
2018/04/18 13:30:21 [TRACE] dag/walk: dependencies changed for "oci_identity_group.demo_group", sending new deps
2018/04/18 13:30:21 [TRACE] dag/walk: walking "var.ref_region"
2018/04/18 13:30:21 [TRACE] vertex 'root.var.ref_region': walking
2018/04/18 13:30:21 [TRACE] dag/walk: walking "var.ref_subnet__demo"
2018/04/18 13:30:21 [TRACE] vertex 'root.var.ref_subnet__demo': walking
2018/04/18 13:30:21 [TRACE] dag/walk: walking "var.ref_policy_demo"
2018/04/18 13:30:21 [TRACE] vertex 'root.var.ref_policy_demo': walking
2018/04/18 13:30:21 [TRACE] dag/walk: walking "var.ref_vcn_cidr_block_demo"
2018/04/18 13:30:21 [TRACE] vertex 'root.var.ref_vcn_cidr_block_demo': walking
2018/04/18 13:30:21 [TRACE] dag/walk: walking "var.ref_comp_demo"
2018/04/18 13:30:21 [TRACE] vertex 'root.var.ref_comp_demo': walking
2018/04/18 13:30:21 [TRACE] dag/walk: walking "var.ref_privatekeylocation"
2018/04/18 13:30:21 [TRACE] vertex 'root.var.ref_privatekeylocation': walking
2018/04/18 13:30:21 [TRACE] dag/walk: walking "var.ref_vcn_demo"
2018/04/18 13:30:21 [TRACE] vertex 'root.var.ref_vcn_demo': walking
2018/04/18 13:30:21 [TRACE] dag/walk: walking "var.ref_group_demo"
2018/04/18 13:30:21 [TRACE] vertex 'root.var.ref_group_demo': walking
2018/04/18 13:30:21 [TRACE] dag/walk: walking "var.ref_user"
2018/04/18 13:30:21 [TRACE] vertex 'root.var.ref_user': walking
2018/04/18 13:30:21 [TRACE] dag/walk: walking "var.ref_tenancy"
2018/04/18 13:30:21 [TRACE] vertex 'root.var.ref_tenancy': walking
2018/04/18 13:30:21 [TRACE] dag/walk: walking "var.ref_fingerprint"
2018/04/18 13:30:21 [TRACE] vertex 'root.var.ref_fingerprint': walking
2018/04/18 13:30:21 [TRACE] dag/walk: walking "provider.oci"
2018/04/18 13:30:21 [TRACE] vertex 'root.provider.oci': walking
2018/04/18 13:30:21 [TRACE] vertex 'root.provider.oci': evaluating
2018/04/18 13:30:21 [TRACE] [walkInput] Entering eval tree: provider.oci
2018/04/18 13:30:21 [TRACE] root: eval: *terraform.EvalSequence
2018/04/18 13:30:21 [TRACE] root: eval: *terraform.EvalInitProvider
2018-04-18T13:30:21.294+0200 [DEBUG] plugin: starting plugin: path=c:\terraform\terraform-provider-oci_v2.1.5.exe args=[c:\terraform\terraform-provider-oci_v2.1.5.exe]
2018/04/18 13:30:21 [TRACE] dag/walk: walking "var.ref_availability_domain"
2018/04/18 13:30:21 [TRACE] vertex 'root.var.ref_availability_domain': walking
2018-04-18T13:30:22.729+0200 [DEBUG] plugin: waiting for RPC address: path=c:\terraform\terraform-provider-oci_v2.1.5.exe
2018-04-18T13:30:23.774+0200 [DEBUG] plugin.terraform-provider-oci_v2.1.5.exe: 2018/04/18 13:30:23 [INFO] terraform-provider-oci 2.1.5
2018-04-18T13:30:23.775+0200 [DEBUG] plugin.terraform-provider-oci_v2.1.5.exe: 2018/04/18 13:30:23 [DEBUG] plugin: plugin address: tcp 127.0.0.1:10000
2018/04/18 13:30:23 [TRACE] root: eval: *terraform.EvalOpFilter
2018/04/18 13:30:23 [TRACE] root: eval: *terraform.EvalSequence
2018/04/18 13:30:23 [TRACE] root: eval: *terraform.EvalGetProvider
2018/04/18 13:30:23 [TRACE] root: eval: *terraform.EvalInterpolateProvider
2018/04/18 13:30:23 [TRACE] root: eval: *terraform.EvalBuildProviderConfig
2018/04/18 13:30:23 [TRACE] root: eval: *terraform.EvalInputProvider
2018/04/18 13:30:23 [TRACE] root: eval: terraform.EvalNoop
2018/04/18 13:30:23 [TRACE] root: eval: terraform.EvalNoop
2018/04/18 13:30:23 [TRACE] root: eval: terraform.EvalNoop
2018/04/18 13:30:23 [TRACE] [walkInput] Exiting eval tree: provider.oci
2018/04/18 13:30:23 [TRACE] dag/walk: walking "oci_identity_compartment.demo_compartment"
2018/04/18 13:30:23 [TRACE] vertex 'root.oci_identity_compartment.demo_compartment': walking
2018/04/18 13:30:23 [TRACE] dag/walk: walking "oci_identity_policy.demo_policy"
2018/04/18 13:30:23 [TRACE] dag/walk: walking "oci_identity_group.demo_group"
2018/04/18 13:30:23 [TRACE] vertex 'root.oci_identity_policy.demo_policy': walking
2018/04/18 13:30:23 [TRACE] vertex 'root.oci_identity_group.demo_group': walking
2018/04/18 13:30:23 [TRACE] dag/walk: walking "provider.oci (close)"
2018/04/18 13:30:23 [TRACE] vertex 'root.provider.oci (close)': walking
2018/04/18 13:30:23 [TRACE] dag/walk: walking "meta.count-boundary (count boundary fixup)"
2018/04/18 13:30:23 [TRACE] vertex 'root.meta.count-boundary (count boundary fixup)': walking
2018/04/18 13:30:23 [TRACE] vertex 'root.provider.oci (close)': evaluating
2018/04/18 13:30:23 [TRACE] vertex 'root.meta.count-boundary (count boundary fixup)': evaluating
2018/04/18 13:30:23 [TRACE] [walkInput] Entering eval tree: meta.count-boundary (count boundary fixup)
2018/04/18 13:30:23 [TRACE] root: eval: *terraform.EvalCountFixZeroOneBoundaryGlobal
2018/04/18 13:30:23 [TRACE] [walkInput] Exiting eval tree: meta.count-boundary (count boundary fixup)
2018/04/18 13:30:23 [TRACE] [walkInput] Entering eval tree: provider.oci (close)
2018/04/18 13:30:23 [TRACE] root: eval: *terraform.EvalCloseProvider
2018/04/18 13:30:23 [TRACE] [walkInput] Exiting eval tree: provider.oci (close)
2018/04/18 13:30:23 [TRACE] dag/walk: walking "root"
2018/04/18 13:30:23 [TRACE] vertex 'root.root': walking
2018/04/18 13:30:23 [INFO] terraform: building graph: GraphTypeValidate
2018/04/18 13:30:23 [TRACE] ConfigTransformer: Starting for path: []
2018/04/18 13:30:23 [TRACE] Graph after step *terraform.ConfigTransformer:

oci_identity_compartment.demo_compartment - *terraform.NodeValidatableResource
oci_identity_group.demo_group - *terraform.NodeValidatableResource
oci_identity_policy.demo_policy - *terraform.NodeValidatableResource
2018/04/18 13:30:23 [TRACE] Graph after step *terraform.LocalTransformer:

oci_identity_compartment.demo_compartment - *terraform.NodeValidatableResource
oci_identity_group.demo_group - *terraform.NodeValidatableResource
oci_identity_policy.demo_policy - *terraform.NodeValidatableResource
2018/04/18 13:30:23 [TRACE] Graph after step *terraform.OutputTransformer:

oci_identity_compartment.demo_compartment - *terraform.NodeValidatableResource
oci_identity_group.demo_group - *terraform.NodeValidatableResource
oci_identity_policy.demo_policy - *terraform.NodeValidatableResource
2018/04/18 13:30:23 [TRACE] Graph after step *terraform.OrphanResourceTransformer:

oci_identity_compartment.demo_compartment - *terraform.NodeValidatableResource
oci_identity_group.demo_group - *terraform.NodeValidatableResource
oci_identity_policy.demo_policy - *terraform.NodeValidatableResource
2018/04/18 13:30:23 [TRACE] Graph after step *terraform.OrphanOutputTransformer:

oci_identity_compartment.demo_compartment - *terraform.NodeValidatableResource
oci_identity_group.demo_group - *terraform.NodeValidatableResource
oci_identity_policy.demo_policy - *terraform.NodeValidatableResource
2018/04/18 13:30:23 [TRACE] AttachResourceConfigTransformer: Beginning...
2018/04/18 13:30:23 [TRACE] AttachResourceConfigTransformer: Attach resource config request: oci_identity_compartment.demo_compartment
2018/04/18 13:30:23 [TRACE] Attaching resource config: &config.Resource{Mode:0, Name:"demo_compartment", Type:"oci_identity_compartment", RawCount:(*config.RawConfig)(0xc042120700), RawConfig:(*config.RawConfig)(0xc042120380), Provisioners:[]*config.Provisioner(nil), Provider:"", DependsOn:[]string(nil), Lifecycle:config.ResourceLifecycle{CreateBeforeDestroy:false, PreventDestroy:false, IgnoreChanges:[]string(nil)}}
2018/04/18 13:30:23 [TRACE] AttachResourceConfigTransformer: Attach resource config request: oci_identity_group.demo_group
2018/04/18 13:30:23 [TRACE] Attaching resource config: &config.Resource{Mode:0, Name:"demo_group", Type:"oci_identity_group", RawCount:(*config.RawConfig)(0xc0421208c0), RawConfig:(*config.RawConfig)(0xc042120770), Provisioners:[]*config.Provisioner(nil), Provider:"", DependsOn:[]string(nil), Lifecycle:config.ResourceLifecycle{CreateBeforeDestroy:false, PreventDestroy:false, IgnoreChanges:[]string(nil)}}
2018/04/18 13:30:23 [TRACE] AttachResourceConfigTransformer: Attach resource config request: oci_identity_policy.demo_policy
2018/04/18 13:30:23 [TRACE] Attaching resource config: &config.Resource{Mode:0, Name:"demo_policy", Type:"oci_identity_policy", RawCount:(*config.RawConfig)(0xc042120a80), RawConfig:(*config.RawConfig)(0xc042120930), Provisioners:[]*config.Provisioner(nil), Provider:"", DependsOn:[]string(nil), Lifecycle:config.ResourceLifecycle{CreateBeforeDestroy:false, PreventDestroy:false, IgnoreChanges:[]string(nil)}}
2018/04/18 13:30:23 [TRACE] Graph after step *terraform.AttachResourceConfigTransformer:

oci_identity_compartment.demo_compartment - *terraform.NodeValidatableResource
oci_identity_group.demo_group - *terraform.NodeValidatableResource
oci_identity_policy.demo_policy - *terraform.NodeValidatableResource
2018/04/18 13:30:23 [DEBUG] Resource state not found for "oci_identity_compartment.demo_compartment": oci_identity_compartment.demo_compartment
2018/04/18 13:30:23 [DEBUG] Resource state not found for "oci_identity_group.demo_group": oci_identity_group.demo_group
2018/04/18 13:30:23 [DEBUG] Resource state not found for "oci_identity_policy.demo_policy": oci_identity_policy.demo_policy
2018/04/18 13:30:23 [TRACE] Graph after step *terraform.AttachStateTransformer:

oci_identity_compartment.demo_compartment - *terraform.NodeValidatableResource
oci_identity_group.demo_group - *terraform.NodeValidatableResource
oci_identity_policy.demo_policy - *terraform.NodeValidatableResource
2018/04/18 13:30:23 [TRACE] Graph after step *terraform.RootVariableTransformer:

oci_identity_compartment.demo_compartment - *terraform.NodeValidatableResource
oci_identity_group.demo_group - *terraform.NodeValidatableResource
oci_identity_policy.demo_policy - *terraform.NodeValidatableResource
var.ref_availability_domain - *terraform.NodeRootVariable
var.ref_comp_demo - *terraform.NodeRootVariable
var.ref_fingerprint - *terraform.NodeRootVariable
var.ref_group_demo - *terraform.NodeRootVariable
var.ref_policy_demo - *terraform.NodeRootVariable
var.ref_privatekeylocation - *terraform.NodeRootVariable
var.ref_region - *terraform.NodeRootVariable
var.ref_subnet__demo - *terraform.NodeRootVariable
var.ref_tenancy - *terraform.NodeRootVariable
var.ref_user - *terraform.NodeRootVariable
var.ref_vcn_cidr_block_demo - *terraform.NodeRootVariable
var.ref_vcn_demo - *terraform.NodeRootVariable
2018/04/18 13:30:23 [TRACE] ProviderConfigTransformer: Starting for path: []
2018/04/18 13:30:23 [TRACE] Attach provider request: []string{} oci
2018/04/18 13:30:23 [TRACE] Attaching provider config: *config.ProviderConfig{Name:"oci", Alias:"", Version:"", RawConfig:(*config.RawConfig)(0xc0424700e0)}
2018/04/18 13:30:23 [TRACE] Graph after step *terraform.ProviderConfigTransformer:

oci_identity_compartment.demo_compartment - *terraform.NodeValidatableResource
oci_identity_group.demo_group - *terraform.NodeValidatableResource
oci_identity_policy.demo_policy - *terraform.NodeValidatableResource
provider.oci - *terraform.NodeApplyableProvider
var.ref_availability_domain - *terraform.NodeRootVariable
var.ref_comp_demo - *terraform.NodeRootVariable
var.ref_fingerprint - *terraform.NodeRootVariable
var.ref_group_demo - *terraform.NodeRootVariable
var.ref_policy_demo - *terraform.NodeRootVariable
var.ref_privatekeylocation - *terraform.NodeRootVariable
var.ref_region - *terraform.NodeRootVariable
var.ref_subnet__demo - *terraform.NodeRootVariable
var.ref_tenancy - *terraform.NodeRootVariable
var.ref_user - *terraform.NodeRootVariable
var.ref_vcn_cidr_block_demo - *terraform.NodeRootVariable
var.ref_vcn_demo - *terraform.NodeRootVariable
2018/04/18 13:30:23 [TRACE] Graph after step *terraform.MissingProviderTransformer:

oci_identity_compartment.demo_compartment - *terraform.NodeValidatableResource
oci_identity_group.demo_group - *terraform.NodeValidatableResource
oci_identity_policy.demo_policy - *terraform.NodeValidatableResource
provider.oci - *terraform.NodeApplyableProvider
var.ref_availability_domain - *terraform.NodeRootVariable
var.ref_comp_demo - *terraform.NodeRootVariable
var.ref_fingerprint - *terraform.NodeRootVariable
var.ref_group_demo - *terraform.NodeRootVariable
var.ref_policy_demo - *terraform.NodeRootVariable
var.ref_privatekeylocation - *terraform.NodeRootVariable
var.ref_region - *terraform.NodeRootVariable
var.ref_subnet__demo - *terraform.NodeRootVariable
var.ref_tenancy - *terraform.NodeRootVariable
var.ref_user - *terraform.NodeRootVariable
var.ref_vcn_cidr_block_demo - *terraform.NodeRootVariable
var.ref_vcn_demo - *terraform.NodeRootVariable
2018/04/18 13:30:23 [DEBUG] resource oci_identity_group.demo_group using provider provider.oci
2018/04/18 13:30:23 [DEBUG] resource oci_identity_compartment.demo_compartment using provider provider.oci
2018/04/18 13:30:23 [DEBUG] resource oci_identity_policy.demo_policy using provider provider.oci
2018/04/18 13:30:23 [TRACE] Graph after step *terraform.ProviderTransformer:

oci_identity_compartment.demo_compartment - *terraform.NodeValidatableResource
provider.oci - *terraform.NodeApplyableProvider
oci_identity_group.demo_group - *terraform.NodeValidatableResource
provider.oci - *terraform.NodeApplyableProvider
oci_identity_policy.demo_policy - *terraform.NodeValidatableResource
provider.oci - *terraform.NodeApplyableProvider
provider.oci - *terraform.NodeApplyableProvider
var.ref_availability_domain - *terraform.NodeRootVariable
var.ref_comp_demo - *terraform.NodeRootVariable
var.ref_fingerprint - *terraform.NodeRootVariable
var.ref_group_demo - *terraform.NodeRootVariable
var.ref_policy_demo - *terraform.NodeRootVariable
var.ref_privatekeylocation - *terraform.NodeRootVariable
var.ref_region - *terraform.NodeRootVariable
var.ref_subnet__demo - *terraform.NodeRootVariable
var.ref_tenancy - *terraform.NodeRootVariable
var.ref_user - *terraform.NodeRootVariable
var.ref_vcn_cidr_block_demo - *terraform.NodeRootVariable
var.ref_vcn_demo - *terraform.NodeRootVariable
2018/04/18 13:30:23 [TRACE] Graph after step *terraform.PruneProviderTransformer:

oci_identity_compartment.demo_compartment - *terraform.NodeValidatableResource
provider.oci - *terraform.NodeApplyableProvider
oci_identity_group.demo_group - *terraform.NodeValidatableResource
provider.oci - *terraform.NodeApplyableProvider
oci_identity_policy.demo_policy - *terraform.NodeValidatableResource
provider.oci - *terraform.NodeApplyableProvider
provider.oci - *terraform.NodeApplyableProvider
var.ref_availability_domain - *terraform.NodeRootVariable
var.ref_comp_demo - *terraform.NodeRootVariable
var.ref_fingerprint - *terraform.NodeRootVariable
var.ref_group_demo - *terraform.NodeRootVariable
var.ref_policy_demo - *terraform.NodeRootVariable
var.ref_privatekeylocation - *terraform.NodeRootVariable
var.ref_region - *terraform.NodeRootVariable
var.ref_subnet__demo - *terraform.NodeRootVariable
var.ref_tenancy - *terraform.NodeRootVariable
var.ref_user - *terraform.NodeRootVariable
var.ref_vcn_cidr_block_demo - *terraform.NodeRootVariable
var.ref_vcn_demo - *terraform.NodeRootVariable
2018/04/18 13:30:23 [TRACE] Graph after step *terraform.ParentProviderTransformer:

oci_identity_compartment.demo_compartment - *terraform.NodeValidatableResource
provider.oci - *terraform.NodeApplyableProvider
oci_identity_group.demo_group - *terraform.NodeValidatableResource
provider.oci - *terraform.NodeApplyableProvider
oci_identity_policy.demo_policy - *terraform.NodeValidatableResource
provider.oci - *terraform.NodeApplyableProvider
provider.oci - *terraform.NodeApplyableProvider
var.ref_availability_domain - *terraform.NodeRootVariable
var.ref_comp_demo - *terraform.NodeRootVariable
var.ref_fingerprint - *terraform.NodeRootVariable
var.ref_group_demo - *terraform.NodeRootVariable
var.ref_policy_demo - *terraform.NodeRootVariable
var.ref_privatekeylocation - *terraform.NodeRootVariable
var.ref_region - *terraform.NodeRootVariable
var.ref_subnet__demo - *terraform.NodeRootVariable
var.ref_tenancy - *terraform.NodeRootVariable
var.ref_user - *terraform.NodeRootVariable
var.ref_vcn_cidr_block_demo - *terraform.NodeRootVariable
var.ref_vcn_demo - *terraform.NodeRootVariable
2018/04/18 13:30:23 [TRACE] Graph after step *terraform.graphTransformerMulti:

oci_identity_compartment.demo_compartment - *terraform.NodeValidatableResource
provider.oci - *terraform.NodeApplyableProvider
oci_identity_group.demo_group - *terraform.NodeValidatableResource
provider.oci - *terraform.NodeApplyableProvider
oci_identity_policy.demo_policy - *terraform.NodeValidatableResource
provider.oci - *terraform.NodeApplyableProvider
provider.oci - *terraform.NodeApplyableProvider
var.ref_availability_domain - *terraform.NodeRootVariable
var.ref_comp_demo - *terraform.NodeRootVariable
var.ref_fingerprint - *terraform.NodeRootVariable
var.ref_group_demo - *terraform.NodeRootVariable
var.ref_policy_demo - *terraform.NodeRootVariable
var.ref_privatekeylocation - *terraform.NodeRootVariable
var.ref_region - *terraform.NodeRootVariable
var.ref_subnet__demo - *terraform.NodeRootVariable
var.ref_tenancy - *terraform.NodeRootVariable
var.ref_user - *terraform.NodeRootVariable
var.ref_vcn_cidr_block_demo - *terraform.NodeRootVariable
var.ref_vcn_demo - *terraform.NodeRootVariable
2018/04/18 13:30:23 [TRACE] Graph after step *terraform.MissingProvisionerTransformer:

oci_identity_compartment.demo_compartment - *terraform.NodeValidatableResource
provider.oci - *terraform.NodeApplyableProvider
oci_identity_group.demo_group - *terraform.NodeValidatableResource
provider.oci - *terraform.NodeApplyableProvider
oci_identity_policy.demo_policy - *terraform.NodeValidatableResource
provider.oci - *terraform.NodeApplyableProvider
provider.oci - *terraform.NodeApplyableProvider
var.ref_availability_domain - *terraform.NodeRootVariable
var.ref_comp_demo - *terraform.NodeRootVariable
var.ref_fingerprint - *terraform.NodeRootVariable
var.ref_group_demo - *terraform.NodeRootVariable
var.ref_policy_demo - *terraform.NodeRootVariable
var.ref_privatekeylocation - *terraform.NodeRootVariable
var.ref_region - *terraform.NodeRootVariable
var.ref_subnet__demo - *terraform.NodeRootVariable
var.ref_tenancy - *terraform.NodeRootVariable
var.ref_user - *terraform.NodeRootVariable
var.ref_vcn_cidr_block_demo - *terraform.NodeRootVariable
var.ref_vcn_demo - *terraform.NodeRootVariable
2018/04/18 13:30:23 [TRACE] Graph after step *terraform.ProvisionerTransformer:

oci_identity_compartment.demo_compartment - *terraform.NodeValidatableResource
provider.oci - *terraform.NodeApplyableProvider
oci_identity_group.demo_group - *terraform.NodeValidatableResource
provider.oci - *terraform.NodeApplyableProvider
oci_identity_policy.demo_policy - *terraform.NodeValidatableResource
provider.oci - *terraform.NodeApplyableProvider
provider.oci - *terraform.NodeApplyableProvider
var.ref_availability_domain - *terraform.NodeRootVariable
var.ref_comp_demo - *terraform.NodeRootVariable
var.ref_fingerprint - *terraform.NodeRootVariable
var.ref_group_demo - *terraform.NodeRootVariable
var.ref_policy_demo - *terraform.NodeRootVariable
var.ref_privatekeylocation - *terraform.NodeRootVariable
var.ref_region - *terraform.NodeRootVariable
var.ref_subnet__demo - *terraform.NodeRootVariable
var.ref_tenancy - *terraform.NodeRootVariable
var.ref_user - *terraform.NodeRootVariable
var.ref_vcn_cidr_block_demo - *terraform.NodeRootVariable
var.ref_vcn_demo - *terraform.NodeRootVariable
2018/04/18 13:30:23 [TRACE] Graph after step *terraform.graphTransformerMulti:

oci_identity_compartment.demo_compartment - *terraform.NodeValidatableResource
provider.oci - *terraform.NodeApplyableProvider
oci_identity_group.demo_group - *terraform.NodeValidatableResource
provider.oci - *terraform.NodeApplyableProvider
oci_identity_policy.demo_policy - *terraform.NodeValidatableResource
provider.oci - *terraform.NodeApplyableProvider
provider.oci - *terraform.NodeApplyableProvider
var.ref_availability_domain - *terraform.NodeRootVariable
var.ref_comp_demo - *terraform.NodeRootVariable
var.ref_fingerprint - *terraform.NodeRootVariable
var.ref_group_demo - *terraform.NodeRootVariable
var.ref_policy_demo - *terraform.NodeRootVariable
var.ref_privatekeylocation - *terraform.NodeRootVariable
var.ref_region - *terraform.NodeRootVariable
var.ref_subnet__demo - *terraform.NodeRootVariable
var.ref_tenancy - *terraform.NodeRootVariable
var.ref_user - *terraform.NodeRootVariable
var.ref_vcn_cidr_block_demo - *terraform.NodeRootVariable
var.ref_vcn_demo - *terraform.NodeRootVariable
2018/04/18 13:30:23 [TRACE] Graph after step *terraform.ModuleVariableTransformer:

oci_identity_compartment.demo_compartment - *terraform.NodeValidatableResource
provider.oci - *terraform.NodeApplyableProvider
oci_identity_group.demo_group - *terraform.NodeValidatableResource
provider.oci - *terraform.NodeApplyableProvider
oci_identity_policy.demo_policy - *terraform.NodeValidatableResource
provider.oci - *terraform.NodeApplyableProvider
provider.oci - *terraform.NodeApplyableProvider
var.ref_availability_domain - *terraform.NodeRootVariable
var.ref_comp_demo - *terraform.NodeRootVariable
var.ref_fingerprint - *terraform.NodeRootVariable
var.ref_group_demo - *terraform.NodeRootVariable
var.ref_policy_demo - *terraform.NodeRootVariable
var.ref_privatekeylocation - *terraform.NodeRootVariable
var.ref_region - *terraform.NodeRootVariable
var.ref_subnet__demo - *terraform.NodeRootVariable
var.ref_tenancy - *terraform.NodeRootVariable
var.ref_user - *terraform.NodeRootVariable
var.ref_vcn_cidr_block_demo - *terraform.NodeRootVariable
var.ref_vcn_demo - *terraform.NodeRootVariable
2018/04/18 13:30:23 [TRACE] Graph after step *terraform.RemovedModuleTransformer:

oci_identity_compartment.demo_compartment - *terraform.NodeValidatableResource
provider.oci - *terraform.NodeApplyableProvider
oci_identity_group.demo_group - *terraform.NodeValidatableResource
provider.oci - *terraform.NodeApplyableProvider
oci_identity_policy.demo_policy - *terraform.NodeValidatableResource
provider.oci - *terraform.NodeApplyableProvider
provider.oci - *terraform.NodeApplyableProvider
var.ref_availability_domain - *terraform.NodeRootVariable
var.ref_comp_demo - *terraform.NodeRootVariable
var.ref_fingerprint - *terraform.NodeRootVariable
var.ref_group_demo - *terraform.NodeRootVariable
var.ref_policy_demo - *terraform.NodeRootVariable
var.ref_privatekeylocation - *terraform.NodeRootVariable
var.ref_region - *terraform.NodeRootVariable
var.ref_subnet__demo - *terraform.NodeRootVariable
var.ref_tenancy - *terraform.NodeRootVariable
var.ref_user - *terraform.NodeRootVariable
var.ref_vcn_cidr_block_demo - *terraform.NodeRootVariable
var.ref_vcn_demo - *terraform.NodeRootVariable
2018/04/18 13:30:23 [DEBUG] ReferenceTransformer: "oci_identity_policy.demo_policy" references: [oci_identity_compartment.demo_compartment var.ref_policy_demo]
2018/04/18 13:30:23 [DEBUG] ReferenceTransformer: "var.ref_fingerprint" references: []
2018/04/18 13:30:23 [DEBUG] ReferenceTransformer: "var.ref_privatekeylocation" references: []
2018/04/18 13:30:23 [DEBUG] ReferenceTransformer: "var.ref_policy_demo" references: []
2018/04/18 13:30:23 [DEBUG] ReferenceTransformer: "var.ref_vcn_demo" references: []
2018/04/18 13:30:23 [DEBUG] ReferenceTransformer: "oci_identity_compartment.demo_compartment" references: [var.ref_comp_demo var.ref_tenancy]
2018/04/18 13:30:23 [DEBUG] ReferenceTransformer: "var.ref_tenancy" references: []
2018/04/18 13:30:23 [DEBUG] ReferenceTransformer: "var.ref_region" references: []
2018/04/18 13:30:23 [DEBUG] ReferenceTransformer: "var.ref_user" references: []
2018/04/18 13:30:23 [DEBUG] ReferenceTransformer: "var.ref_comp_demo" references: []
2018/04/18 13:30:23 [DEBUG] ReferenceTransformer: "var.ref_vcn_cidr_block_demo" references: []
2018/04/18 13:30:23 [DEBUG] ReferenceTransformer: "oci_identity_group.demo_group" references: [oci_identity_compartment.demo_compartment var.ref_group_demo]
2018/04/18 13:30:23 [DEBUG] ReferenceTransformer: "var.ref_group_demo" references: []
2018/04/18 13:30:23 [DEBUG] ReferenceTransformer: "var.ref_subnet__demo" references: []
2018/04/18 13:30:23 [DEBUG] ReferenceTransformer: "provider.oci" references: [var.ref_tenancy var.ref_user var.ref_fingerprint var.ref_privatekeylocation var.ref_region]
2018/04/18 13:30:23 [DEBUG] ReferenceTransformer: "var.ref_availability_domain" references: []
2018/04/18 13:30:23 [TRACE] Graph after step *terraform.ReferenceTransformer:

oci_identity_compartment.demo_compartment - *terraform.NodeValidatableResource
provider.oci - *terraform.NodeApplyableProvider
var.ref_comp_demo - *terraform.NodeRootVariable
var.ref_tenancy - *terraform.NodeRootVariable
oci_identity_group.demo_group - *terraform.NodeValidatableResource
oci_identity_compartment.demo_compartment - *terraform.NodeValidatableResource
provider.oci - *terraform.NodeApplyableProvider
var.ref_group_demo - *terraform.NodeRootVariable
oci_identity_policy.demo_policy - *terraform.NodeValidatableResource
oci_identity_compartment.demo_compartment - *terraform.NodeValidatableResource
provider.oci - *terraform.NodeApplyableProvider
var.ref_policy_demo - *terraform.NodeRootVariable
provider.oci - *terraform.NodeApplyableProvider
var.ref_fingerprint - *terraform.NodeRootVariable
var.ref_privatekeylocation - *terraform.NodeRootVariable
var.ref_region - *terraform.NodeRootVariable
var.ref_tenancy - *terraform.NodeRootVariable
var.ref_user - *terraform.NodeRootVariable
var.ref_availability_domain - *terraform.NodeRootVariable
var.ref_comp_demo - *terraform.NodeRootVariable
var.ref_fingerprint - *terraform.NodeRootVariable
var.ref_group_demo - *terraform.NodeRootVariable
var.ref_policy_demo - *terraform.NodeRootVariable
var.ref_privatekeylocation - *terraform.NodeRootVariable
var.ref_region - *terraform.NodeRootVariable
var.ref_subnet__demo - *terraform.NodeRootVariable
var.ref_tenancy - *terraform.NodeRootVariable
var.ref_user - *terraform.NodeRootVariable
var.ref_vcn_cidr_block_demo - *terraform.NodeRootVariable
var.ref_vcn_demo - *terraform.NodeRootVariable
2018/04/18 13:30:23 [TRACE] Graph after step *terraform.CountBoundaryTransformer:

meta.count-boundary (count boundary fixup) - *terraform.NodeCountBoundary
oci_identity_compartment.demo_compartment - *terraform.NodeValidatableResource
oci_identity_group.demo_group - *terraform.NodeValidatableResource
oci_identity_policy.demo_policy - *terraform.NodeValidatableResource
provider.oci - *terraform.NodeApplyableProvider
var.ref_availability_domain - *terraform.NodeRootVariable
var.ref_comp_demo - *terraform.NodeRootVariable
var.ref_fingerprint - *terraform.NodeRootVariable
var.ref_group_demo - *terraform.NodeRootVariable
var.ref_policy_demo - *terraform.NodeRootVariable
var.ref_privatekeylocation - *terraform.NodeRootVariable
var.ref_region - *terraform.NodeRootVariable
var.ref_subnet__demo - *terraform.NodeRootVariable
var.ref_tenancy - *terraform.NodeRootVariable
var.ref_user - *terraform.NodeRootVariable
var.ref_vcn_cidr_block_demo - *terraform.NodeRootVariable
var.ref_vcn_demo - *terraform.NodeRootVariable
oci_identity_compartment.demo_compartment - *terraform.NodeValidatableResource
provider.oci - *terraform.NodeApplyableProvider
var.ref_comp_demo - *terraform.NodeRootVariable
var.ref_tenancy - *terraform.NodeRootVariable
oci_identity_group.demo_group - *terraform.NodeValidatableResource
oci_identity_compartment.demo_compartment - *terraform.NodeValidatableResource
provider.oci - *terraform.NodeApplyableProvider
var.ref_group_demo - *terraform.NodeRootVariable
oci_identity_policy.demo_policy - *terraform.NodeValidatableResource
oci_identity_compartment.demo_compartment - *terraform.NodeValidatableResource
provider.oci - *terraform.NodeApplyableProvider
var.ref_policy_demo - *terraform.NodeRootVariable
provider.oci - *terraform.NodeApplyableProvider
var.ref_fingerprint - *terraform.NodeRootVariable
var.ref_privatekeylocation - *terraform.NodeRootVariable
var.ref_region - *terraform.NodeRootVariable
var.ref_tenancy - *terraform.NodeRootVariable
var.ref_user - *terraform.NodeRootVariable
var.ref_availability_domain - *terraform.NodeRootVariable
var.ref_comp_demo - *terraform.NodeRootVariable
var.ref_fingerprint - *terraform.NodeRootVariable
var.ref_group_demo - *terraform.NodeRootVariable
var.ref_policy_demo - *terraform.NodeRootVariable
var.ref_privatekeylocation - *terraform.NodeRootVariable
var.ref_region - *terraform.NodeRootVariable
var.ref_subnet__demo - *terraform.NodeRootVariable
var.ref_tenancy - *terraform.NodeRootVariable
var.ref_user - *terraform.NodeRootVariable
var.ref_vcn_cidr_block_demo - *terraform.NodeRootVariable
var.ref_vcn_demo - *terraform.NodeRootVariable
2018/04/18 13:30:23 [TRACE] Graph after step *terraform.TargetsTransformer:

meta.count-boundary (count boundary fixup) - *terraform.NodeCountBoundary
oci_identity_compartment.demo_compartment - *terraform.NodeValidatableResource
oci_identity_group.demo_group - *terraform.NodeValidatableResource
oci_identity_policy.demo_policy - *terraform.NodeValidatableResource
provider.oci - *terraform.NodeApplyableProvider
var.ref_availability_domain - *terraform.NodeRootVariable
var.ref_comp_demo - *terraform.NodeRootVariable
var.ref_fingerprint - *terraform.NodeRootVariable
var.ref_group_demo - *terraform.NodeRootVariable
var.ref_policy_demo - *terraform.NodeRootVariable
var.ref_privatekeylocation - *terraform.NodeRootVariable
var.ref_region - *terraform.NodeRootVariable
var.ref_subnet__demo - *terraform.NodeRootVariable
var.ref_tenancy - *terraform.NodeRootVariable
var.ref_user - *terraform.NodeRootVariable
var.ref_vcn_cidr_block_demo - *terraform.NodeRootVariable
var.ref_vcn_demo - *terraform.NodeRootVariable
oci_identity_compartment.demo_compartment - *terraform.NodeValidatableResource
provider.oci - *terraform.NodeApplyableProvider
var.ref_comp_demo - *terraform.NodeRootVariable
var.ref_tenancy - *terraform.NodeRootVariable
oci_identity_group.demo_group - *terraform.NodeValidatableResource
oci_identity_compartment.demo_compartment - *terraform.NodeValidatableResource
provider.oci - *terraform.NodeApplyableProvider
var.ref_group_demo - *terraform.NodeRootVariable
oci_identity_policy.demo_policy - *terraform.NodeValidatableResource
oci_identity_compartment.demo_compartment - *terraform.NodeValidatableResource
provider.oci - *terraform.NodeApplyableProvider
var.ref_policy_demo - *terraform.NodeRootVariable
provider.oci - *terraform.NodeApplyableProvider
var.ref_fingerprint - *terraform.NodeRootVariable
var.ref_privatekeylocation - *terraform.NodeRootVariable
var.ref_region - *terraform.NodeRootVariable
var.ref_tenancy - *terraform.NodeRootVariable
var.ref_user - *terraform.NodeRootVariable
var.ref_availability_domain - *terraform.NodeRootVariable
var.ref_comp_demo - *terraform.NodeRootVariable
var.ref_fingerprint - *terraform.NodeRootVariable
var.ref_group_demo - *terraform.NodeRootVariable
var.ref_policy_demo - *terraform.NodeRootVariable
var.ref_privatekeylocation - *terraform.NodeRootVariable
var.ref_region - *terraform.NodeRootVariable
var.ref_subnet__demo - *terraform.NodeRootVariable
var.ref_tenancy - *terraform.NodeRootVariable
var.ref_user - *terraform.NodeRootVariable
var.ref_vcn_cidr_block_demo - *terraform.NodeRootVariable
var.ref_vcn_demo - *terraform.NodeRootVariable
2018/04/18 13:30:23 [TRACE] Graph after step *terraform.CloseProviderTransformer:

meta.count-boundary (count boundary fixup) - *terraform.NodeCountBoundary
oci_identity_compartment.demo_compartment - *terraform.NodeValidatableResource
oci_identity_group.demo_group - *terraform.NodeValidatableResource
oci_identity_policy.demo_policy - *terraform.NodeValidatableResource
provider.oci - *terraform.NodeApplyableProvider
var.ref_availability_domain - *terraform.NodeRootVariable
var.ref_comp_demo - *terraform.NodeRootVariable
var.ref_fingerprint - *terraform.NodeRootVariable
var.ref_group_demo - *terraform.NodeRootVariable
var.ref_policy_demo - *terraform.NodeRootVariable
var.ref_privatekeylocation - *terraform.NodeRootVariable
var.ref_region - *terraform.NodeRootVariable
var.ref_subnet__demo - *terraform.NodeRootVariable
var.ref_tenancy - *terraform.NodeRootVariable
var.ref_user - *terraform.NodeRootVariable
var.ref_vcn_cidr_block_demo - *terraform.NodeRootVariable
var.ref_vcn_demo - *terraform.NodeRootVariable
oci_identity_compartment.demo_compartment - *terraform.NodeValidatableResource
provider.oci - *terraform.NodeApplyableProvider
var.ref_comp_demo - *terraform.NodeRootVariable
var.ref_tenancy - *terraform.NodeRootVariable
oci_identity_group.demo_group - *terraform.NodeValidatableResource
oci_identity_compartment.demo_compartment - *terraform.NodeValidatableResource
provider.oci - *terraform.NodeApplyableProvider
var.ref_group_demo - *terraform.NodeRootVariable
oci_identity_policy.demo_policy - *terraform.NodeValidatableResource
oci_identity_compartment.demo_compartment - *terraform.NodeValidatableResource
provider.oci - *terraform.NodeApplyableProvider
var.ref_policy_demo - *terraform.NodeRootVariable
provider.oci - *terraform.NodeApplyableProvider
var.ref_fingerprint - *terraform.NodeRootVariable
var.ref_privatekeylocation - *terraform.NodeRootVariable
var.ref_region - *terraform.NodeRootVariable
var.ref_tenancy - *terraform.NodeRootVariable
var.ref_user - *terraform.NodeRootVariable
provider.oci (close) - *terraform.graphNodeCloseProvider
oci_identity_compartment.demo_compartment - *terraform.NodeValidatableResource
oci_identity_group.demo_group - *terraform.NodeValidatableResource
oci_identity_policy.demo_policy - *terraform.NodeValidatableResource
provider.oci - *terraform.NodeApplyableProvider
var.ref_availability_domain - *terraform.NodeRootVariable
var.ref_comp_demo - *terraform.NodeRootVariable
var.ref_fingerprint - *terraform.NodeRootVariable
var.ref_group_demo - *terraform.NodeRootVariable
var.ref_policy_demo - *terraform.NodeRootVariable
var.ref_privatekeylocation - *terraform.NodeRootVariable
var.ref_region - *terraform.NodeRootVariable
var.ref_subnet__demo - *terraform.NodeRootVariable
var.ref_tenancy - *terraform.NodeRootVariable
var.ref_user - *terraform.NodeRootVariable
var.ref_vcn_cidr_block_demo - *terraform.NodeRootVariable
var.ref_vcn_demo - *terraform.NodeRootVariable
2018/04/18 13:30:23 [TRACE] Graph after step *terraform.CloseProvisionerTransformer:

meta.count-boundary (count boundary fixup) - *terraform.NodeCountBoundary
oci_identity_compartment.demo_compartment - *terraform.NodeValidatableResource
oci_identity_group.demo_group - *terraform.NodeValidatableResource
oci_identity_policy.demo_policy - *terraform.NodeValidatableResource
provider.oci - *terraform.NodeApplyableProvider
var.ref_availability_domain - *terraform.NodeRootVariable
var.ref_comp_demo - *terraform.NodeRootVariable
var.ref_fingerprint - *terraform.NodeRootVariable
var.ref_group_demo - *terraform.NodeRootVariable
var.ref_policy_demo - *terraform.NodeRootVariable
var.ref_privatekeylocation - *terraform.NodeRootVariable
var.ref_region - *terraform.NodeRootVariable
var.ref_subnet__demo - *terraform.NodeRootVariable
var.ref_tenancy - *terraform.NodeRootVariable
var.ref_user - *terraform.NodeRootVariable
var.ref_vcn_cidr_block_demo - *terraform.NodeRootVariable
var.ref_vcn_demo - *terraform.NodeRootVariable
oci_identity_compartment.demo_compartment - *terraform.NodeValidatableResource
provider.oci - *terraform.NodeApplyableProvider
var.ref_comp_demo - *terraform.NodeRootVariable
var.ref_tenancy - *terraform.NodeRootVariable
oci_identity_group.demo_group - *terraform.NodeValidatableResource
oci_identity_compartment.demo_compartment - *terraform.NodeValidatableResource
provider.oci - *terraform.NodeApplyableProvider
var.ref_group_demo - *terraform.NodeRootVariable
oci_identity_policy.demo_policy - *terraform.NodeValidatableResource
oci_identity_compartment.demo_compartment - *terraform.NodeValidatableResource
provider.oci - *terraform.NodeApplyableProvider
var.ref_policy_demo - *terraform.NodeRootVariable
provider.oci - *terraform.NodeApplyableProvider
var.ref_fingerprint - *terraform.NodeRootVariable
var.ref_privatekeylocation - *terraform.NodeRootVariable
var.ref_region - *terraform.NodeRootVariable
var.ref_tenancy - *terraform.NodeRootVariable
var.ref_user - *terraform.NodeRootVariable
provider.oci (close) - *terraform.graphNodeCloseProvider
oci_identity_compartment.demo_compartment - *terraform.NodeValidatableResource
oci_identity_group.demo_group - *terraform.NodeValidatableResource
oci_identity_policy.demo_policy - *terraform.NodeValidatableResource
provider.oci - *terraform.NodeApplyableProvider
var.ref_availability_domain - *terraform.NodeRootVariable
var.ref_comp_demo - *terraform.NodeRootVariable
var.ref_fingerprint - *terraform.NodeRootVariable
var.ref_group_demo - *terraform.NodeRootVariable
var.ref_policy_demo - *terraform.NodeRootVariable
var.ref_privatekeylocation - *terraform.NodeRootVariable
var.ref_region - *terraform.NodeRootVariable
var.ref_subnet__demo - *terraform.NodeRootVariable
var.ref_tenancy - *terraform.NodeRootVariable
var.ref_user - *terraform.NodeRootVariable
var.ref_vcn_cidr_block_demo - *terraform.NodeRootVariable
var.ref_vcn_demo - *terraform.NodeRootVariable
2018/04/18 13:30:23 [TRACE] Graph after step *terraform.RootTransformer:

meta.count-boundary (count boundary fixup) - *terraform.NodeCountBoundary
oci_identity_compartment.demo_compartment - *terraform.NodeValidatableResource
oci_identity_group.demo_group - *terraform.NodeValidatableResource
oci_identity_policy.demo_policy - *terraform.NodeValidatableResource
provider.oci - *terraform.NodeApplyableProvider
var.ref_availability_domain - *terraform.NodeRootVariable
var.ref_comp_demo - *terraform.NodeRootVariable
var.ref_fingerprint - *terraform.NodeRootVariable
var.ref_group_demo - *terraform.NodeRootVariable
var.ref_policy_demo - *terraform.NodeRootVariable
var.ref_privatekeylocation - *terraform.NodeRootVariable
var.ref_region - *terraform.NodeRootVariable
var.ref_subnet__demo - *terraform.NodeRootVariable
var.ref_tenancy - *terraform.NodeRootVariable
var.ref_user - *terraform.NodeRootVariable
var.ref_vcn_cidr_block_demo - *terraform.NodeRootVariable
var.ref_vcn_demo - *terraform.NodeRootVariable
oci_identity_compartment.demo_compartment - *terraform.NodeValidatableResource
provider.oci - *terraform.NodeApplyableProvider
var.ref_comp_demo - *terraform.NodeRootVariable
var.ref_tenancy - *terraform.NodeRootVariable
oci_identity_group.demo_group - *terraform.NodeValidatableResource
oci_identity_compartment.demo_compartment - *terraform.NodeValidatableResource
provider.oci - *terraform.NodeApplyableProvider
var.ref_group_demo - *terraform.NodeRootVariable
oci_identity_policy.demo_policy - *terraform.NodeValidatableResource
oci_identity_compartment.demo_compartment - *terraform.NodeValidatableResource
provider.oci - *terraform.NodeApplyableProvider
var.ref_policy_demo - *terraform.NodeRootVariable
provider.oci - *terraform.NodeApplyableProvider
var.ref_fingerprint - *terraform.NodeRootVariable
var.ref_privatekeylocation - *terraform.NodeRootVariable
var.ref_region - *terraform.NodeRootVariable
var.ref_tenancy - *terraform.NodeRootVariable
var.ref_user - *terraform.NodeRootVariable
provider.oci (close) - *terraform.graphNodeCloseProvider
oci_identity_compartment.demo_compartment - *terraform.NodeValidatableResource
oci_identity_group.demo_group - *terraform.NodeValidatableResource
oci_identity_policy.demo_policy - *terraform.NodeValidatableResource
provider.oci - *terraform.NodeApplyableProvider
root - terraform.graphNodeRoot
meta.count-boundary (count boundary fixup) - *terraform.NodeCountBoundary
provider.oci (close) - *terraform.graphNodeCloseProvider
var.ref_availability_domain - *terraform.NodeRootVariable
var.ref_comp_demo - *terraform.NodeRootVariable
var.ref_fingerprint - *terraform.NodeRootVariable
var.ref_group_demo - *terraform.NodeRootVariable
var.ref_policy_demo - *terraform.NodeRootVariable
var.ref_privatekeylocation - *terraform.NodeRootVariable
var.ref_region - *terraform.NodeRootVariable
var.ref_subnet__demo - *terraform.NodeRootVariable
var.ref_tenancy - *terraform.NodeRootVariable
var.ref_user - *terraform.NodeRootVariable
var.ref_vcn_cidr_block_demo - *terraform.NodeRootVariable
var.ref_vcn_demo - *terraform.NodeRootVariable
2018/04/18 13:30:23 [TRACE] Graph after step *terraform.TransitiveReductionTransformer:

meta.count-boundary (count boundary fixup) - *terraform.NodeCountBoundary
oci_identity_group.demo_group - *terraform.NodeValidatableResource
oci_identity_policy.demo_policy - *terraform.NodeValidatableResource
var.ref_availability_domain - *terraform.NodeRootVariable
var.ref_subnet__demo - *terraform.NodeRootVariable
var.ref_vcn_cidr_block_demo - *terraform.NodeRootVariable
var.ref_vcn_demo - *terraform.NodeRootVariable
oci_identity_compartment.demo_compartment - *terraform.NodeValidatableResource
provider.oci - *terraform.NodeApplyableProvider
var.ref_comp_demo - *terraform.NodeRootVariable
oci_identity_group.demo_group - *terraform.NodeValidatableResource
oci_identity_compartment.demo_compartment - *terraform.NodeValidatableResource
var.ref_group_demo - *terraform.NodeRootVariable
oci_identity_policy.demo_policy - *terraform.NodeValidatableResource
oci_identity_compartment.demo_compartment - *terraform.NodeValidatableResource
var.ref_policy_demo - *terraform.NodeRootVariable
provider.oci - *terraform.NodeApplyableProvider
var.ref_fingerprint - *terraform.NodeRootVariable
var.ref_privatekeylocation - *terraform.NodeRootVariable
var.ref_region - *terraform.NodeRootVariable
var.ref_tenancy - *terraform.NodeRootVariable
var.ref_user - *terraform.NodeRootVariable
provider.oci (close) - *terraform.graphNodeCloseProvider
oci_identity_group.demo_group - *terraform.NodeValidatableResource
oci_identity_policy.demo_policy - *terraform.NodeValidatableResource
root - terraform.graphNodeRoot
meta.count-boundary (count boundary fixup) - *terraform.NodeCountBoundary
provider.oci (close) - *terraform.graphNodeCloseProvider
var.ref_availability_domain - *terraform.NodeRootVariable
var.ref_comp_demo - *terraform.NodeRootVariable
var.ref_fingerprint - *terraform.NodeRootVariable
var.ref_group_demo - *terraform.NodeRootVariable
var.ref_policy_demo - *terraform.NodeRootVariable
var.ref_privatekeylocation - *terraform.NodeRootVariable
var.ref_region - *terraform.NodeRootVariable
var.ref_subnet__demo - *terraform.NodeRootVariable
var.ref_tenancy - *terraform.NodeRootVariable
var.ref_user - *terraform.NodeRootVariable
var.ref_vcn_cidr_block_demo - *terraform.NodeRootVariable
var.ref_vcn_demo - *terraform.NodeRootVariable
2018/04/18 13:30:23 [DEBUG] Starting graph walk: walkValidate
2018/04/18 13:30:23 [TRACE] dag/walk: added new vertex: "var.ref_privatekeylocation"
2018/04/18 13:30:23 [TRACE] dag/walk: added new vertex: "oci_identity_group.demo_group"
2018/04/18 13:30:23 [TRACE] dag/walk: added new vertex: "var.ref_region"
2018/04/18 13:30:23 [TRACE] dag/walk: added new vertex: "var.ref_policy_demo"
2018/04/18 13:30:23 [TRACE] dag/walk: added new vertex: "var.ref_vcn_demo"
2018/04/18 13:30:23 [TRACE] dag/walk: added new vertex: "provider.oci (close)"
2018/04/18 13:30:23 [TRACE] dag/walk: added new vertex: "var.ref_vcn_cidr_block_demo"
2018/04/18 13:30:23 [TRACE] dag/walk: added new vertex: "var.ref_group_demo"
2018/04/18 13:30:23 [TRACE] dag/walk: added new vertex: "var.ref_subnet__demo"
2018/04/18 13:30:23 [TRACE] dag/walk: added new vertex: "oci_identity_policy.demo_policy"
2018/04/18 13:30:23 [TRACE] dag/walk: added new vertex: "var.ref_comp_demo"
2018/04/18 13:30:23 [TRACE] dag/walk: added new vertex: "var.ref_tenancy"
2018/04/18 13:30:23 [TRACE] dag/walk: added new vertex: "root"
2018/04/18 13:30:23 [TRACE] dag/walk: added new vertex: "var.ref_availability_domain"
2018/04/18 13:30:23 [TRACE] dag/walk: added new vertex: "oci_identity_compartment.demo_compartment"
2018/04/18 13:30:23 [TRACE] dag/walk: added new vertex: "var.ref_fingerprint"
2018/04/18 13:30:23 [TRACE] dag/walk: added new vertex: "var.ref_user"
2018/04/18 13:30:23 [TRACE] dag/walk: added new vertex: "meta.count-boundary (count boundary fixup)"
2018/04/18 13:30:23 [TRACE] dag/walk: added new vertex: "provider.oci"
2018/04/18 13:30:23 [TRACE] dag/walk: added edge: "oci_identity_compartment.demo_compartment" waiting on "var.ref_comp_demo"
2018/04/18 13:30:23 [TRACE] dag/walk: added edge: "meta.count-boundary (count boundary fixup)" waiting on "var.ref_availability_domain"
2018/04/18 13:30:23 [TRACE] dag/walk: added edge: "oci_identity_policy.demo_policy" waiting on "var.ref_policy_demo"
2018/04/18 13:30:23 [TRACE] dag/walk: added edge: "meta.count-boundary (count boundary fixup)" waiting on "var.ref_vcn_demo"
2018/04/18 13:30:23 [TRACE] dag/walk: added edge: "provider.oci" waiting on "var.ref_region"
2018/04/18 13:30:23 [TRACE] dag/walk: added edge: "root" waiting on "meta.count-boundary (count boundary fixup)"
2018/04/18 13:30:23 [TRACE] dag/walk: added edge: "provider.oci" waiting on "var.ref_user"
2018/04/18 13:30:23 [TRACE] dag/walk: added edge: "provider.oci" waiting on "var.ref_fingerprint"
2018/04/18 13:30:23 [TRACE] dag/walk: added edge: "provider.oci (close)" waiting on "oci_identity_group.demo_group"
2018/04/18 13:30:23 [TRACE] dag/walk: added edge: "oci_identity_group.demo_group" waiting on "var.ref_group_demo"
2018/04/18 13:30:23 [TRACE] dag/walk: added edge: "oci_identity_group.demo_group" waiting on "oci_identity_compartment.demo_compartment"
2018/04/18 13:30:23 [TRACE] dag/walk: added edge: "oci_identity_policy.demo_policy" waiting on "oci_identity_compartment.demo_compartment"
2018/04/18 13:30:23 [TRACE] dag/walk: added edge: "oci_identity_compartment.demo_compartment" waiting on "provider.oci"
2018/04/18 13:30:23 [TRACE] dag/walk: added edge: "provider.oci" waiting on "var.ref_privatekeylocation"
2018/04/18 13:30:23 [TRACE] dag/walk: added edge: "provider.oci (close)" waiting on "oci_identity_policy.demo_policy"
2018/04/18 13:30:23 [TRACE] dag/walk: added edge: "provider.oci" waiting on "var.ref_tenancy"
2018/04/18 13:30:23 [TRACE] dag/walk: added edge: "meta.count-boundary (count boundary fixup)" waiting on "var.ref_subnet__demo"
2018/04/18 13:30:23 [TRACE] dag/walk: added edge: "meta.count-boundary (count boundary fixup)" waiting on "var.ref_vcn_cidr_block_demo"
2018/04/18 13:30:23 [TRACE] dag/walk: added edge: "root" waiting on "provider.oci (close)"
2018/04/18 13:30:23 [TRACE] dag/walk: added edge: "meta.count-boundary (count boundary fixup)" waiting on "oci_identity_policy.demo_policy"
2018/04/18 13:30:23 [TRACE] dag/walk: added edge: "meta.count-boundary (count boundary fixup)" waiting on "oci_identity_group.demo_group"
2018/04/18 13:30:23 [TRACE] dag/walk: dependencies changed for "meta.count-boundary (count boundary fixup)", sending new deps
2018/04/18 13:30:23 [TRACE] dag/walk: dependencies changed for "oci_identity_policy.demo_policy", sending new deps
2018/04/18 13:30:23 [TRACE] dag/walk: dependencies changed for "provider.oci", sending new deps
2018/04/18 13:30:23 [TRACE] dag/walk: dependencies changed for "root", sending new deps
2018/04/18 13:30:23 [TRACE] dag/walk: dependencies changed for "provider.oci (close)", sending new deps
2018/04/18 13:30:23 [TRACE] dag/walk: dependencies changed for "oci_identity_group.demo_group", sending new deps
2018/04/18 13:30:23 [TRACE] dag/walk: dependencies changed for "oci_identity_compartment.demo_compartment", sending new deps
2018/04/18 13:30:23 [TRACE] dag/walk: walking "var.ref_availability_domain"
2018/04/18 13:30:23 [TRACE] vertex 'root.var.ref_availability_domain': walking
2018/04/18 13:30:23 [TRACE] dag/walk: walking "var.ref_fingerprint"
2018/04/18 13:30:23 [TRACE] vertex 'root.var.ref_fingerprint': walking
2018/04/18 13:30:23 [TRACE] dag/walk: walking "var.ref_user"
2018/04/18 13:30:23 [TRACE] vertex 'root.var.ref_user': walking
2018/04/18 13:30:23 [TRACE] dag/walk: walking "var.ref_privatekeylocation"
2018/04/18 13:30:23 [TRACE] vertex 'root.var.ref_privatekeylocation': walking
2018/04/18 13:30:23 [TRACE] dag/walk: walking "var.ref_region"
2018/04/18 13:30:23 [TRACE] vertex 'root.var.ref_region': walking
2018/04/18 13:30:23 [TRACE] dag/walk: walking "var.ref_subnet__demo"
2018/04/18 13:30:23 [TRACE] vertex 'root.var.ref_subnet__demo': walking
2018/04/18 13:30:23 [TRACE] dag/walk: walking "var.ref_policy_demo"
2018/04/18 13:30:23 [TRACE] vertex 'root.var.ref_policy_demo': walking
2018/04/18 13:30:23 [TRACE] dag/walk: walking "var.ref_vcn_demo"
2018/04/18 13:30:23 [TRACE] vertex 'root.var.ref_vcn_demo': walking
2018/04/18 13:30:23 [TRACE] dag/walk: walking "var.ref_vcn_cidr_block_demo"
2018/04/18 13:30:23 [TRACE] vertex 'root.var.ref_vcn_cidr_block_demo': walking
2018/04/18 13:30:23 [TRACE] dag/walk: walking "var.ref_group_demo"
2018/04/18 13:30:23 [TRACE] vertex 'root.var.ref_group_demo': walking
2018/04/18 13:30:23 [TRACE] dag/walk: walking "var.ref_comp_demo"
2018/04/18 13:30:23 [TRACE] vertex 'root.var.ref_comp_demo': walking
2018/04/18 13:30:23 [TRACE] dag/walk: walking "var.ref_tenancy"
2018/04/18 13:30:23 [TRACE] vertex 'root.var.ref_tenancy': walking
2018/04/18 13:30:23 [TRACE] dag/walk: walking "provider.oci"
2018/04/18 13:30:23 [TRACE] vertex 'root.provider.oci': walking
2018/04/18 13:30:23 [TRACE] vertex 'root.provider.oci': evaluating
2018/04/18 13:30:23 [TRACE] [walkValidate] Entering eval tree: provider.oci
2018/04/18 13:30:23 [TRACE] root: eval: *terraform.EvalSequence
2018/04/18 13:30:23 [TRACE] root: eval: *terraform.EvalInitProvider
2018/04/18 13:30:23 [TRACE] root: eval: terraform.EvalNoop
2018/04/18 13:30:23 [TRACE] root: eval: *terraform.EvalOpFilter
2018/04/18 13:30:23 [TRACE] root: eval: *terraform.EvalSequence
2018/04/18 13:30:23 [TRACE] root: eval: *terraform.EvalGetProvider
2018/04/18 13:30:23 [TRACE] root: eval: *terraform.EvalInterpolateProvider
2018/04/18 13:30:23 [TRACE] root: eval: *terraform.EvalBuildProviderConfig
2018/04/18 13:30:23 [TRACE] root: eval: *terraform.EvalValidateProvider
2018/04/18 13:30:23 [TRACE] root: eval: terraform.EvalNoop
2018/04/18 13:30:23 [TRACE] root: eval: terraform.EvalNoop
2018/04/18 13:30:23 [TRACE] [walkValidate] Exiting eval tree: provider.oci
2018/04/18 13:30:23 [TRACE] dag/walk: walking "oci_identity_compartment.demo_compartment"
2018/04/18 13:30:23 [TRACE] vertex 'root.oci_identity_compartment.demo_compartment': walking
2018/04/18 13:30:23 [TRACE] vertex 'root.oci_identity_compartment.demo_compartment': evaluating
2018/04/18 13:30:23 [TRACE] [walkValidate] Entering eval tree: oci_identity_compartment.demo_compartment
2018/04/18 13:30:23 [TRACE] root: eval: *terraform.EvalSequence
2018/04/18 13:30:23 [TRACE] root: eval: *terraform.EvalInterpolate
2018/04/18 13:30:23 [TRACE] root: eval: *terraform.EvalIf
2018/04/18 13:30:23 [TRACE] root: eval: *terraform.EvalValidateCount
2018/04/18 13:30:23 [TRACE] root: eval: *terraform.EvalCountFixZeroOneBoundary
2018/04/18 13:30:23 [TRACE] [walkValidate] Exiting eval tree: oci_identity_compartment.demo_compartment
2018/04/18 13:30:23 [TRACE] vertex 'root.oci_identity_compartment.demo_compartment': expanding/walking dynamic subgraph
2018/04/18 13:30:23 [TRACE] Graph after step *terraform.ResourceCountTransformer:

oci_identity_compartment.demo_compartment - *terraform.NodeValidatableResourceInstance
2018/04/18 13:30:23 [DEBUG] Resource state not found for "oci_identity_compartment.demo_compartment": oci_identity_compartment.demo_compartment
2018/04/18 13:30:23 [TRACE] Graph after step *terraform.AttachStateTransformer:

oci_identity_compartment.demo_compartment - *terraform.NodeValidatableResourceInstance
2018/04/18 13:30:23 [TRACE] Graph after step *terraform.TargetsTransformer:

oci_identity_compartment.demo_compartment - *terraform.NodeValidatableResourceInstance
2018/04/18 13:30:23 [DEBUG] ReferenceTransformer: "oci_identity_compartment.demo_compartment" references: []
2018/04/18 13:30:23 [TRACE] Graph after step *terraform.ReferenceTransformer:

oci_identity_compartment.demo_compartment - *terraform.NodeValidatableResourceInstance
2018/04/18 13:30:23 [TRACE] Graph after step *terraform.RootTransformer:

oci_identity_compartment.demo_compartment - *terraform.NodeValidatableResourceInstance
2018/04/18 13:30:23 [TRACE] dag/walk: added new vertex: "oci_identity_compartment.demo_compartment"
2018/04/18 13:30:23 [TRACE] dag/walk: walking "oci_identity_compartment.demo_compartment"
2018/04/18 13:30:23 [TRACE] vertex 'root.oci_identity_compartment.demo_compartment': walking
2018/04/18 13:30:23 [TRACE] vertex 'root.oci_identity_compartment.demo_compartment': evaluating
2018/04/18 13:30:23 [TRACE] [walkValidate] Entering eval tree: oci_identity_compartment.demo_compartment
2018/04/18 13:30:23 [TRACE] root: eval: *terraform.EvalSequence
2018/04/18 13:30:23 [TRACE] root: eval: *terraform.EvalValidateResourceSelfRef
2018/04/18 13:30:23 [TRACE] root: eval: *terraform.EvalGetProvider
2018/04/18 13:30:23 [TRACE] root: eval: *terraform.EvalInterpolate
2018/04/18 13:30:23 [TRACE] root: eval: *terraform.EvalValidateResource
2018/04/18 13:30:23 [TRACE] [walkValidate] Exiting eval tree: oci_identity_compartment.demo_compartment
2018/04/18 13:30:23 [TRACE] dag/walk: walking "oci_identity_policy.demo_policy"
2018/04/18 13:30:23 [TRACE] vertex 'root.oci_identity_policy.demo_policy': walking
2018/04/18 13:30:23 [TRACE] vertex 'root.oci_identity_policy.demo_policy': evaluating
2018/04/18 13:30:23 [TRACE] [walkValidate] Entering eval tree: oci_identity_policy.demo_policy
2018/04/18 13:30:23 [TRACE] root: eval: *terraform.EvalSequence
2018/04/18 13:30:23 [TRACE] root: eval: *terraform.EvalInterpolate
2018/04/18 13:30:23 [TRACE] root: eval: *terraform.EvalIf
2018/04/18 13:30:23 [TRACE] root: eval: *terraform.EvalValidateCount
2018/04/18 13:30:23 [TRACE] root: eval: *terraform.EvalCountFixZeroOneBoundary
2018/04/18 13:30:23 [TRACE] [walkValidate] Exiting eval tree: oci_identity_policy.demo_policy
2018/04/18 13:30:23 [TRACE] vertex 'root.oci_identity_policy.demo_policy': expanding/walking dynamic subgraph
2018/04/18 13:30:23 [TRACE] Graph after step *terraform.ResourceCountTransformer:

oci_identity_policy.demo_policy - *terraform.NodeValidatableResourceInstance
2018/04/18 13:30:23 [DEBUG] Resource state not found for "oci_identity_policy.demo_policy": oci_identity_policy.demo_policy
2018/04/18 13:30:23 [TRACE] Graph after step *terraform.AttachStateTransformer:

oci_identity_policy.demo_policy - *terraform.NodeValidatableResourceInstance
2018/04/18 13:30:23 [TRACE] Graph after step *terraform.TargetsTransformer:

oci_identity_policy.demo_policy - *terraform.NodeValidatableResourceInstance
2018/04/18 13:30:23 [DEBUG] ReferenceTransformer: "oci_identity_policy.demo_policy" references: []
2018/04/18 13:30:23 [TRACE] Graph after step *terraform.ReferenceTransformer:

oci_identity_policy.demo_policy - *terraform.NodeValidatableResourceInstance
2018/04/18 13:30:23 [TRACE] Graph after step *terraform.RootTransformer:

oci_identity_policy.demo_policy - *terraform.NodeValidatableResourceInstance
2018/04/18 13:30:23 [TRACE] dag/walk: added new vertex: "oci_identity_policy.demo_policy"
2018/04/18 13:30:23 [TRACE] dag/walk: walking "oci_identity_policy.demo_policy"
2018/04/18 13:30:23 [TRACE] vertex 'root.oci_identity_policy.demo_policy': walking
2018/04/18 13:30:23 [TRACE] vertex 'root.oci_identity_policy.demo_policy': evaluating
2018/04/18 13:30:23 [TRACE] [walkValidate] Entering eval tree: oci_identity_policy.demo_policy
2018/04/18 13:30:23 [TRACE] root: eval: *terraform.EvalSequence
2018/04/18 13:30:23 [TRACE] root: eval: *terraform.EvalValidateResourceSelfRef
2018/04/18 13:30:23 [TRACE] root: eval: *terraform.EvalGetProvider
2018/04/18 13:30:23 [TRACE] root: eval: *terraform.EvalInterpolate
2018/04/18 13:30:23 [TRACE] root: eval: *terraform.EvalValidateResource
2018/04/18 13:30:23 [TRACE] dag/walk: walking "oci_identity_group.demo_group"
2018/04/18 13:30:23 [TRACE] vertex 'root.oci_identity_group.demo_group': walking
2018/04/18 13:30:23 [TRACE] vertex 'root.oci_identity_group.demo_group': evaluating
2018/04/18 13:30:23 [TRACE] [walkValidate] Entering eval tree: oci_identity_group.demo_group
2018/04/18 13:30:23 [TRACE] root: eval: *terraform.EvalSequence
2018/04/18 13:30:23 [TRACE] root: eval: *terraform.EvalInterpolate
2018/04/18 13:30:23 [TRACE] root: eval: *terraform.EvalIf
2018/04/18 13:30:23 [TRACE] root: eval: *terraform.EvalValidateCount
2018/04/18 13:30:23 [TRACE] root: eval: *terraform.EvalCountFixZeroOneBoundary
2018/04/18 13:30:23 [TRACE] [walkValidate] Exiting eval tree: oci_identity_group.demo_group
2018/04/18 13:30:23 [TRACE] vertex 'root.oci_identity_group.demo_group': expanding/walking dynamic subgraph
2018/04/18 13:30:23 [TRACE] Graph after step *terraform.ResourceCountTransformer:

oci_identity_group.demo_group - *terraform.NodeValidatableResourceInstance
2018/04/18 13:30:23 [DEBUG] Resource state not found for "oci_identity_group.demo_group": oci_identity_group.demo_group
2018/04/18 13:30:23 [TRACE] Graph after step *terraform.AttachStateTransformer:

oci_identity_group.demo_group - *terraform.NodeValidatableResourceInstance
2018/04/18 13:30:23 [TRACE] Graph after step *terraform.TargetsTransformer:

oci_identity_group.demo_group - *terraform.NodeValidatableResourceInstance
2018/04/18 13:30:23 [DEBUG] ReferenceTransformer: "oci_identity_group.demo_group" references: []
2018/04/18 13:30:23 [TRACE] Graph after step *terraform.ReferenceTransformer:

oci_identity_group.demo_group - *terraform.NodeValidatableResourceInstance
2018/04/18 13:30:23 [TRACE] Graph after step *terraform.RootTransformer:

oci_identity_group.demo_group - *terraform.NodeValidatableResourceInstance
2018/04/18 13:30:23 [TRACE] dag/walk: added new vertex: "oci_identity_group.demo_group"
2018/04/18 13:30:23 [TRACE] dag/walk: walking "oci_identity_group.demo_group"
2018/04/18 13:30:23 [TRACE] vertex 'root.oci_identity_group.demo_group': walking
2018/04/18 13:30:23 [TRACE] vertex 'root.oci_identity_group.demo_group': evaluating
2018/04/18 13:30:23 [TRACE] [walkValidate] Entering eval tree: oci_identity_group.demo_group
2018/04/18 13:30:23 [TRACE] root: eval: *terraform.EvalSequence
2018/04/18 13:30:23 [TRACE] root: eval: *terraform.EvalValidateResourceSelfRef
2018/04/18 13:30:23 [TRACE] root: eval: *terraform.EvalGetProvider
2018/04/18 13:30:23 [TRACE] root: eval: *terraform.EvalInterpolate
2018/04/18 13:30:23 [TRACE] root: eval: *terraform.EvalValidateResource
2018/04/18 13:30:23 [TRACE] [walkValidate] Exiting eval tree: oci_identity_policy.demo_policy
2018/04/18 13:30:23 [TRACE] [walkValidate] Exiting eval tree: oci_identity_group.demo_group
2018/04/18 13:30:23 [TRACE] dag/walk: walking "meta.count-boundary (count boundary fixup)"
2018/04/18 13:30:23 [TRACE] vertex 'root.meta.count-boundary (count boundary fixup)': walking
2018/04/18 13:30:23 [TRACE] vertex 'root.meta.count-boundary (count boundary fixup)': evaluating
2018/04/18 13:30:23 [TRACE] [walkValidate] Entering eval tree: meta.count-boundary (count boundary fixup)
2018/04/18 13:30:23 [TRACE] root: eval: *terraform.EvalCountFixZeroOneBoundaryGlobal
2018/04/18 13:30:23 [TRACE] [walkValidate] Exiting eval tree: meta.count-boundary (count boundary fixup)
2018/04/18 13:30:23 [TRACE] dag/walk: walking "provider.oci (close)"
2018/04/18 13:30:23 [TRACE] vertex 'root.provider.oci (close)': walking
2018/04/18 13:30:23 [TRACE] vertex 'root.provider.oci (close)': evaluating
2018/04/18 13:30:23 [TRACE] [walkValidate] Entering eval tree: provider.oci (close)
2018/04/18 13:30:23 [TRACE] root: eval: *terraform.EvalCloseProvider
2018/04/18 13:30:23 [TRACE] [walkValidate] Exiting eval tree: provider.oci (close)
2018/04/18 13:30:23 [TRACE] dag/walk: walking "root"
2018/04/18 13:30:23 [TRACE] vertex 'root.root': walking
2018/04/18 13:30:23 [INFO] backend/local: apply calling Refresh
2018/04/18 13:30:23 [INFO] terraform: building graph: GraphTypeRefresh
2018/04/18 13:30:23 [TRACE] No managed resources in state during refresh, skipping managed resource transformer
2018/04/18 13:30:23 [TRACE] ConfigTransformer: Starting for path: []
2018/04/18 13:30:23 [TRACE] Graph after step *terraform.ConfigTransformer:

2018/04/18 13:30:23 [TRACE] Graph after step *terraform.OrphanResourceTransformer:

2018/04/18 13:30:23 [TRACE] Graph after step *terraform.AttachStateTransformer:

2018/04/18 13:30:23 [TRACE] AttachResourceConfigTransformer: Beginning...
2018/04/18 13:30:23 [TRACE] Graph after step *terraform.AttachResourceConfigTransformer:

2018/04/18 13:30:23 [TRACE] Graph after step *terraform.RootVariableTransformer:

var.ref_availability_domain - *terraform.NodeRootVariable
var.ref_comp_demo - *terraform.NodeRootVariable
var.ref_fingerprint - *terraform.NodeRootVariable
var.ref_group_demo - *terraform.NodeRootVariable
var.ref_policy_demo - *terraform.NodeRootVariable
var.ref_privatekeylocation - *terraform.NodeRootVariable
var.ref_region - *terraform.NodeRootVariable
var.ref_subnet__demo - *terraform.NodeRootVariable
var.ref_tenancy - *terraform.NodeRootVariable
var.ref_user - *terraform.NodeRootVariable
var.ref_vcn_cidr_block_demo - *terraform.NodeRootVariable
var.ref_vcn_demo - *terraform.NodeRootVariable
2018/04/18 13:30:23 [TRACE] ProviderConfigTransformer: Starting for path: []
2018/04/18 13:30:23 [TRACE] Attach provider request: []string{} oci
2018/04/18 13:30:23 [TRACE] Attaching provider config: *config.ProviderConfig{Name:"oci", Alias:"", Version:"", RawConfig:(*config.RawConfig)(0xc0424700e0)}
2018/04/18 13:30:23 [TRACE] Graph after step *terraform.ProviderConfigTransformer:

provider.oci - *terraform.NodeApplyableProvider
var.ref_availability_domain - *terraform.NodeRootVariable
var.ref_comp_demo - *terraform.NodeRootVariable
var.ref_fingerprint - *terraform.NodeRootVariable
var.ref_group_demo - *terraform.NodeRootVariable
var.ref_policy_demo - *terraform.NodeRootVariable
var.ref_privatekeylocation - *terraform.NodeRootVariable
var.ref_region - *terraform.NodeRootVariable
var.ref_subnet__demo - *terraform.NodeRootVariable
var.ref_tenancy - *terraform.NodeRootVariable
var.ref_user - *terraform.NodeRootVariable
var.ref_vcn_cidr_block_demo - *terraform.NodeRootVariable
var.ref_vcn_demo - *terraform.NodeRootVariable
2018/04/18 13:30:23 [TRACE] Graph after step *terraform.MissingProviderTransformer:

provider.oci - *terraform.NodeApplyableProvider
var.ref_availability_domain - *terraform.NodeRootVariable
var.ref_comp_demo - *terraform.NodeRootVariable
var.ref_fingerprint - *terraform.NodeRootVariable
var.ref_group_demo - *terraform.NodeRootVariable
var.ref_policy_demo - *terraform.NodeRootVariable
var.ref_privatekeylocation - *terraform.NodeRootVariable
var.ref_region - *terraform.NodeRootVariable
var.ref_subnet__demo - *terraform.NodeRootVariable
var.ref_tenancy - *terraform.NodeRootVariable
var.ref_user - *terraform.NodeRootVariable
var.ref_vcn_cidr_block_demo - *terraform.NodeRootVariable
var.ref_vcn_demo - *terraform.NodeRootVariable
2018/04/18 13:30:23 [TRACE] Graph after step *terraform.ProviderTransformer:

provider.oci - *terraform.NodeApplyableProvider
var.ref_availability_domain - *terraform.NodeRootVariable
var.ref_comp_demo - *terraform.NodeRootVariable
var.ref_fingerprint - *terraform.NodeRootVariable
var.ref_group_demo - *terraform.NodeRootVariable
var.ref_policy_demo - *terraform.NodeRootVariable
var.ref_privatekeylocation - *terraform.NodeRootVariable
var.ref_region - *terraform.NodeRootVariable
var.ref_subnet__demo - *terraform.NodeRootVariable
var.ref_tenancy - *terraform.NodeRootVariable
var.ref_user - *terraform.NodeRootVariable
var.ref_vcn_cidr_block_demo - *terraform.NodeRootVariable
var.ref_vcn_demo - *terraform.NodeRootVariable
2018/04/18 13:30:23 [DEBUG] pruning unused provider provider.oci
2018/04/18 13:30:23 [TRACE] Graph after step *terraform.PruneProviderTransformer:

var.ref_availability_domain - *terraform.NodeRootVariable
var.ref_comp_demo - *terraform.NodeRootVariable
var.ref_fingerprint - *terraform.NodeRootVariable
var.ref_group_demo - *terraform.NodeRootVariable
var.ref_policy_demo - *terraform.NodeRootVariable
var.ref_privatekeylocation - *terraform.NodeRootVariable
var.ref_region - *terraform.NodeRootVariable
var.ref_subnet__demo - *terraform.NodeRootVariable
var.ref_tenancy - *terraform.NodeRootVariable
var.ref_user - *terraform.NodeRootVariable
var.ref_vcn_cidr_block_demo - *terraform.NodeRootVariable
var.ref_vcn_demo - *terraform.NodeRootVariable
2018/04/18 13:30:23 [TRACE] Graph after step *terraform.ParentProviderTransformer:

var.ref_availability_domain - *terraform.NodeRootVariable
var.ref_comp_demo - *terraform.NodeRootVariable
var.ref_fingerprint - *terraform.NodeRootVariable
var.ref_group_demo - *terraform.NodeRootVariable
var.ref_policy_demo - *terraform.NodeRootVariable
var.ref_privatekeylocation - *terraform.NodeRootVariable
var.ref_region - *terraform.NodeRootVariable
var.ref_subnet__demo - *terraform.NodeRootVariable
var.ref_tenancy - *terraform.NodeRootVariable
var.ref_user - *terraform.NodeRootVariable
var.ref_vcn_cidr_block_demo - *terraform.NodeRootVariable
var.ref_vcn_demo - *terraform.NodeRootVariable
2018/04/18 13:30:23 [TRACE] Graph after step *terraform.graphTransformerMulti:

var.ref_availability_domain - *terraform.NodeRootVariable
var.ref_comp_demo - *terraform.NodeRootVariable
var.ref_fingerprint - *terraform.NodeRootVariable
var.ref_group_demo - *terraform.NodeRootVariable
var.ref_policy_demo - *terraform.NodeRootVariable
var.ref_privatekeylocation - *terraform.NodeRootVariable
var.ref_region - *terraform.NodeRootVariable
var.ref_subnet__demo - *terraform.NodeRootVariable
var.ref_tenancy - *terraform.NodeRootVariable
var.ref_user - *terraform.NodeRootVariable
var.ref_vcn_cidr_block_demo - *terraform.NodeRootVariable
var.ref_vcn_demo - *terraform.NodeRootVariable
2018/04/18 13:30:23 [TRACE] Graph after step *terraform.LocalTransformer:

var.ref_availability_domain - *terraform.NodeRootVariable
var.ref_comp_demo - *terraform.NodeRootVariable
var.ref_fingerprint - *terraform.NodeRootVariable
var.ref_group_demo - *terraform.NodeRootVariable
var.ref_policy_demo - *terraform.NodeRootVariable
var.ref_privatekeylocation - *terraform.NodeRootVariable
var.ref_region - *terraform.NodeRootVariable
var.ref_subnet__demo - *terraform.NodeRootVariable
var.ref_tenancy - *terraform.NodeRootVariable
var.ref_user - *terraform.NodeRootVariable
var.ref_vcn_cidr_block_demo - *terraform.NodeRootVariable
var.ref_vcn_demo - *terraform.NodeRootVariable
2018/04/18 13:30:23 [TRACE] Graph after step *terraform.OutputTransformer:

var.ref_availability_domain - *terraform.NodeRootVariable
var.ref_comp_demo - *terraform.NodeRootVariable
var.ref_fingerprint - *terraform.NodeRootVariable
var.ref_group_demo - *terraform.NodeRootVariable
var.ref_policy_demo - *terraform.NodeRootVariable
var.ref_privatekeylocation - *terraform.NodeRootVariable
var.ref_region - *terraform.NodeRootVariable
var.ref_subnet__demo - *terraform.NodeRootVariable
var.ref_tenancy - *terraform.NodeRootVariable
var.ref_user - *terraform.NodeRootVariable
var.ref_vcn_cidr_block_demo - *terraform.NodeRootVariable
var.ref_vcn_demo - *terraform.NodeRootVariable
2018/04/18 13:30:23 [TRACE] Graph after step *terraform.ModuleVariableTransformer:

var.ref_availability_domain - *terraform.NodeRootVariable
var.ref_comp_demo - *terraform.NodeRootVariable
var.ref_fingerprint - *terraform.NodeRootVariable
var.ref_group_demo - *terraform.NodeRootVariable
var.ref_policy_demo - *terraform.NodeRootVariable
var.ref_privatekeylocation - *terraform.NodeRootVariable
var.ref_region - *terraform.NodeRootVariable
var.ref_subnet__demo - *terraform.NodeRootVariable
var.ref_tenancy - *terraform.NodeRootVariable
var.ref_user - *terraform.NodeRootVariable
var.ref_vcn_cidr_block_demo - *terraform.NodeRootVariable
var.ref_vcn_demo - *terraform.NodeRootVariable
2018/04/18 13:30:23 [DEBUG] ReferenceTransformer: "var.ref_vcn_demo" references: []
2018/04/18 13:30:23 [DEBUG] ReferenceTransformer: "var.ref_vcn_cidr_block_demo" references: []
2018/04/18 13:30:23 [DEBUG] ReferenceTransformer: "var.ref_region" references: []
2018/04/18 13:30:23 [DEBUG] ReferenceTransformer: "var.ref_fingerprint" references: []
2018/04/18 13:30:23 [DEBUG] ReferenceTransformer: "var.ref_privatekeylocation" references: []
2018/04/18 13:30:23 [DEBUG] ReferenceTransformer: "var.ref_comp_demo" references: []
2018/04/18 13:30:23 [DEBUG] ReferenceTransformer: "var.ref_group_demo" references: []
2018/04/18 13:30:23 [DEBUG] ReferenceTransformer: "var.ref_policy_demo" references: []
2018/04/18 13:30:23 [DEBUG] ReferenceTransformer: "var.ref_tenancy" references: []
2018/04/18 13:30:23 [DEBUG] ReferenceTransformer: "var.ref_availability_domain" references: []
2018/04/18 13:30:23 [DEBUG] ReferenceTransformer: "var.ref_user" references: []
2018/04/18 13:30:23 [DEBUG] ReferenceTransformer: "var.ref_subnet__demo" references: []
2018/04/18 13:30:23 [TRACE] Graph after step *terraform.ReferenceTransformer:

var.ref_availability_domain - *terraform.NodeRootVariable
var.ref_comp_demo - *terraform.NodeRootVariable
var.ref_fingerprint - *terraform.NodeRootVariable
var.ref_group_demo - *terraform.NodeRootVariable
var.ref_policy_demo - *terraform.NodeRootVariable
var.ref_privatekeylocation - *terraform.NodeRootVariable
var.ref_region - *terraform.NodeRootVariable
var.ref_subnet__demo - *terraform.NodeRootVariable
var.ref_tenancy - *terraform.NodeRootVariable
var.ref_user - *terraform.NodeRootVariable
var.ref_vcn_cidr_block_demo - *terraform.NodeRootVariable
var.ref_vcn_demo - *terraform.NodeRootVariable
2018/04/18 13:30:23 [TRACE] Graph after step *terraform.TargetsTransformer:

var.ref_availability_domain - *terraform.NodeRootVariable
var.ref_comp_demo - *terraform.NodeRootVariable
var.ref_fingerprint - *terraform.NodeRootVariable
var.ref_group_demo - *terraform.NodeRootVariable
var.ref_policy_demo - *terraform.NodeRootVariable
var.ref_privatekeylocation - *terraform.NodeRootVariable
var.ref_region - *terraform.NodeRootVariable
var.ref_subnet__demo - *terraform.NodeRootVariable
var.ref_tenancy - *terraform.NodeRootVariable
var.ref_user - *terraform.NodeRootVariable
var.ref_vcn_cidr_block_demo - *terraform.NodeRootVariable
var.ref_vcn_demo - *terraform.NodeRootVariable
2018/04/18 13:30:23 [TRACE] Graph after step *terraform.CloseProviderTransformer:

var.ref_availability_domain - *terraform.NodeRootVariable
var.ref_comp_demo - *terraform.NodeRootVariable
var.ref_fingerprint - *terraform.NodeRootVariable
var.ref_group_demo - *terraform.NodeRootVariable
var.ref_policy_demo - *terraform.NodeRootVariable
var.ref_privatekeylocation - *terraform.NodeRootVariable
var.ref_region - *terraform.NodeRootVariable
var.ref_subnet__demo - *terraform.NodeRootVariable
var.ref_tenancy - *terraform.NodeRootVariable
var.ref_user - *terraform.NodeRootVariable
var.ref_vcn_cidr_block_demo - *terraform.NodeRootVariable
var.ref_vcn_demo - *terraform.NodeRootVariable
2018/04/18 13:30:23 [TRACE] Graph after step *terraform.RootTransformer:

root - terraform.graphNodeRoot
var.ref_availability_domain - *terraform.NodeRootVariable
var.ref_comp_demo - *terraform.NodeRootVariable
var.ref_fingerprint - *terraform.NodeRootVariable
var.ref_group_demo - *terraform.NodeRootVariable
var.ref_policy_demo - *terraform.NodeRootVariable
var.ref_privatekeylocation - *terraform.NodeRootVariable
var.ref_region - *terraform.NodeRootVariable
var.ref_subnet__demo - *terraform.NodeRootVariable
var.ref_tenancy - *terraform.NodeRootVariable
var.ref_user - *terraform.NodeRootVariable
var.ref_vcn_cidr_block_demo - *terraform.NodeRootVariable
var.ref_vcn_demo - *terraform.NodeRootVariable
var.ref_availability_domain - *terraform.NodeRootVariable
var.ref_comp_demo - *terraform.NodeRootVariable
var.ref_fingerprint - *terraform.NodeRootVariable
var.ref_group_demo - *terraform.NodeRootVariable
var.ref_policy_demo - *terraform.NodeRootVariable
var.ref_privatekeylocation - *terraform.NodeRootVariable
var.ref_region - *terraform.NodeRootVariable
var.ref_subnet__demo - *terraform.NodeRootVariable
var.ref_tenancy - *terraform.NodeRootVariable
var.ref_user - *terraform.NodeRootVariable
var.ref_vcn_cidr_block_demo - *terraform.NodeRootVariable
var.ref_vcn_demo - *terraform.NodeRootVariable
2018/04/18 13:30:23 [TRACE] Graph after step *terraform.TransitiveReductionTransformer:

root - terraform.graphNodeRoot
var.ref_availability_domain - *terraform.NodeRootVariable
var.ref_comp_demo - *terraform.NodeRootVariable
var.ref_fingerprint - *terraform.NodeRootVariable
var.ref_group_demo - *terraform.NodeRootVariable
var.ref_policy_demo - *terraform.NodeRootVariable
var.ref_privatekeylocation - *terraform.NodeRootVariable
var.ref_region - *terraform.NodeRootVariable
var.ref_subnet__demo - *terraform.NodeRootVariable
var.ref_tenancy - *terraform.NodeRootVariable
var.ref_user - *terraform.NodeRootVariable
var.ref_vcn_cidr_block_demo - *terraform.NodeRootVariable
var.ref_vcn_demo - *terraform.NodeRootVariable
var.ref_availability_domain - *terraform.NodeRootVariable
var.ref_comp_demo - *terraform.NodeRootVariable
var.ref_fingerprint - *terraform.NodeRootVariable
var.ref_group_demo - *terraform.NodeRootVariable
var.ref_policy_demo - *terraform.NodeRootVariable
var.ref_privatekeylocation - *terraform.NodeRootVariable
var.ref_region - *terraform.NodeRootVariable
var.ref_subnet__demo - *terraform.NodeRootVariable
var.ref_tenancy - *terraform.NodeRootVariable
var.ref_user - *terraform.NodeRootVariable
var.ref_vcn_cidr_block_demo - *terraform.NodeRootVariable
var.ref_vcn_demo - *terraform.NodeRootVariable
2018/04/18 13:30:23 [DEBUG] Starting graph walk: walkRefresh
2018/04/18 13:30:23 [TRACE] dag/walk: added new vertex: "var.ref_vcn_demo"
2018/04/18 13:30:23 [TRACE] dag/walk: added new vertex: "var.ref_region"
2018/04/18 13:30:23 [TRACE] dag/walk: added new vertex: "var.ref_privatekeylocation"
2018/04/18 13:30:23 [TRACE] dag/walk: added new vertex: "var.ref_comp_demo"
2018/04/18 13:30:23 [TRACE] dag/walk: added new vertex: "var.ref_availability_domain"
2018/04/18 13:30:23 [TRACE] dag/walk: added new vertex: "var.ref_user"
2018/04/18 13:30:23 [TRACE] dag/walk: added new vertex: "var.ref_policy_demo"
2018/04/18 13:30:23 [TRACE] dag/walk: added new vertex: "var.ref_fingerprint"
2018/04/18 13:30:23 [TRACE] dag/walk: added new vertex: "var.ref_group_demo"
2018/04/18 13:30:23 [TRACE] dag/walk: added new vertex: "var.ref_tenancy"
2018/04/18 13:30:23 [TRACE] dag/walk: added new vertex: "var.ref_subnet__demo"
2018/04/18 13:30:23 [TRACE] dag/walk: added new vertex: "root"
2018/04/18 13:30:23 [TRACE] dag/walk: added new vertex: "var.ref_vcn_cidr_block_demo"
2018/04/18 13:30:23 [TRACE] dag/walk: added edge: "root" waiting on "var.ref_vcn_demo"
2018/04/18 13:30:23 [TRACE] dag/walk: added edge: "root" waiting on "var.ref_region"
2018/04/18 13:30:23 [TRACE] dag/walk: added edge: "root" waiting on "var.ref_fingerprint"
2018/04/18 13:30:23 [TRACE] dag/walk: added edge: "root" waiting on "var.ref_policy_demo"
2018/04/18 13:30:23 [TRACE] dag/walk: added edge: "root" waiting on "var.ref_user"
2018/04/18 13:30:23 [TRACE] dag/walk: added edge: "root" waiting on "var.ref_subnet__demo"
2018/04/18 13:30:23 [TRACE] dag/walk: added edge: "root" waiting on "var.ref_vcn_cidr_block_demo"
2018/04/18 13:30:23 [TRACE] dag/walk: added edge: "root" waiting on "var.ref_comp_demo"
2018/04/18 13:30:23 [TRACE] dag/walk: added edge: "root" waiting on "var.ref_group_demo"
2018/04/18 13:30:23 [TRACE] dag/walk: added edge: "root" waiting on "var.ref_tenancy"
2018/04/18 13:30:23 [TRACE] dag/walk: added edge: "root" waiting on "var.ref_availability_domain"
2018/04/18 13:30:23 [TRACE] dag/walk: added edge: "root" waiting on "var.ref_privatekeylocation"
2018/04/18 13:30:23 [TRACE] dag/walk: dependencies changed for "root", sending new deps
2018/04/18 13:30:23 [TRACE] dag/walk: walking "var.ref_availability_domain"
2018/04/18 13:30:23 [TRACE] vertex 'root.var.ref_availability_domain': walking
2018/04/18 13:30:23 [TRACE] dag/walk: walking "var.ref_vcn_cidr_block_demo"
2018/04/18 13:30:23 [TRACE] vertex 'root.var.ref_vcn_cidr_block_demo': walking
2018/04/18 13:30:23 [TRACE] dag/walk: walking "var.ref_fingerprint"
2018/04/18 13:30:23 [TRACE] vertex 'root.var.ref_fingerprint': walking
2018/04/18 13:30:23 [TRACE] dag/walk: walking "var.ref_group_demo"
2018/04/18 13:30:23 [TRACE] vertex 'root.var.ref_group_demo': walking
2018/04/18 13:30:23 [TRACE] dag/walk: walking "var.ref_policy_demo"
2018/04/18 13:30:23 [TRACE] vertex 'root.var.ref_policy_demo': walking
2018/04/18 13:30:23 [TRACE] dag/walk: walking "var.ref_tenancy"
2018/04/18 13:30:23 [TRACE] vertex 'root.var.ref_tenancy': walking
2018/04/18 13:30:23 [TRACE] dag/walk: walking "var.ref_subnet__demo"
2018/04/18 13:30:23 [TRACE] vertex 'root.var.ref_subnet__demo': walking
2018/04/18 13:30:23 [TRACE] dag/walk: walking "var.ref_user"
2018/04/18 13:30:23 [TRACE] vertex 'root.var.ref_user': walking
2018/04/18 13:30:23 [TRACE] dag/walk: walking "var.ref_region"
2018/04/18 13:30:23 [TRACE] vertex 'root.var.ref_region': walking
2018/04/18 13:30:23 [TRACE] dag/walk: walking "var.ref_vcn_demo"
2018/04/18 13:30:23 [TRACE] vertex 'root.var.ref_vcn_demo': walking
2018/04/18 13:30:23 [TRACE] dag/walk: walking "var.ref_privatekeylocation"
2018/04/18 13:30:23 [TRACE] vertex 'root.var.ref_privatekeylocation': walking
2018/04/18 13:30:23 [TRACE] dag/walk: walking "var.ref_comp_demo"
2018/04/18 13:30:23 [TRACE] vertex 'root.var.ref_comp_demo': walking
2018/04/18 13:30:23 [TRACE] dag/walk: walking "root"
2018/04/18 13:30:23 [TRACE] vertex 'root.root': walking
2018/04/18 13:30:23 [INFO] backend/local: apply calling Plan
2018/04/18 13:30:23 [INFO] terraform: building graph: GraphTypePlan
2018/04/18 13:30:23 [TRACE] ConfigTransformer: Starting for path: []
2018/04/18 13:30:23 [TRACE] Graph after step *terraform.ConfigTransformer:

oci_identity_compartment.demo_compartment - *terraform.NodePlannableResource
oci_identity_group.demo_group - *terraform.NodePlannableResource
oci_identity_policy.demo_policy - *terraform.NodePlannableResource
2018/04/18 13:30:23 [TRACE] Graph after step *terraform.LocalTransformer:

oci_identity_compartment.demo_compartment - *terraform.NodePlannableResource
oci_identity_group.demo_group - *terraform.NodePlannableResource
oci_identity_policy.demo_policy - *terraform.NodePlannableResource
2018/04/18 13:30:23 [TRACE] Graph after step *terraform.OutputTransformer:

oci_identity_compartment.demo_compartment - *terraform.NodePlannableResource
oci_identity_group.demo_group - *terraform.NodePlannableResource
oci_identity_policy.demo_policy - *terraform.NodePlannableResource
2018/04/18 13:30:23 [TRACE] Graph after step *terraform.OrphanResourceTransformer:

oci_identity_compartment.demo_compartment - *terraform.NodePlannableResource
oci_identity_group.demo_group - *terraform.NodePlannableResource
oci_identity_policy.demo_policy - *terraform.NodePlannableResource
2018/04/18 13:30:23 [TRACE] Graph after step *terraform.OrphanOutputTransformer:

oci_identity_compartment.demo_compartment - *terraform.NodePlannableResource
oci_identity_group.demo_group - *terraform.NodePlannableResource
oci_identity_policy.demo_policy - *terraform.NodePlannableResource
2018/04/18 13:30:23 [TRACE] AttachResourceConfigTransformer: Beginning...
2018/04/18 13:30:23 [TRACE] AttachResourceConfigTransformer: Attach resource config request: oci_identity_compartment.demo_compartment
2018/04/18 13:30:23 [TRACE] Attaching resource config: &config.Resource{Mode:0, Name:"demo_compartment", Type:"oci_identity_compartment", RawCount:(*config.RawConfig)(0xc042120700), RawConfig:(*config.RawConfig)(0xc042120380), Provisioners:[]*config.Provisioner(nil), Provider:"", DependsOn:[]string(nil), Lifecycle:config.ResourceLifecycle{CreateBeforeDestroy:false, PreventDestroy:false, IgnoreChanges:[]string(nil)}}
2018/04/18 13:30:23 [TRACE] AttachResourceConfigTransformer: Attach resource config request: oci_identity_group.demo_group
2018/04/18 13:30:23 [TRACE] Attaching resource config: &config.Resource{Mode:0, Name:"demo_group", Type:"oci_identity_group", RawCount:(*config.RawConfig)(0xc0421208c0), RawConfig:(*config.RawConfig)(0xc042120770), Provisioners:[]*config.Provisioner(nil), Provider:"", DependsOn:[]string(nil), Lifecycle:config.ResourceLifecycle{CreateBeforeDestroy:false, PreventDestroy:false, IgnoreChanges:[]string(nil)}}
2018/04/18 13:30:23 [TRACE] AttachResourceConfigTransformer: Attach resource config request: oci_identity_policy.demo_policy
2018/04/18 13:30:23 [TRACE] Attaching resource config: &config.Resource{Mode:0, Name:"demo_policy", Type:"oci_identity_policy", RawCount:(*config.RawConfig)(0xc042120a80), RawConfig:(*config.RawConfig)(0xc042120930), Provisioners:[]*config.Provisioner(nil), Provider:"", DependsOn:[]string(nil), Lifecycle:config.ResourceLifecycle{CreateBeforeDestroy:false, PreventDestroy:false, IgnoreChanges:[]string(nil)}}
2018/04/18 13:30:23 [TRACE] Graph after step *terraform.AttachResourceConfigTransformer:

oci_identity_compartment.demo_compartment - *terraform.NodePlannableResource
oci_identity_group.demo_group - *terraform.NodePlannableResource
oci_identity_policy.demo_policy - *terraform.NodePlannableResource
2018/04/18 13:30:23 [DEBUG] Resource state not found for "oci_identity_compartment.demo_compartment": oci_identity_compartment.demo_compartment
2018/04/18 13:30:23 [DEBUG] Resource state not found for "oci_identity_group.demo_group": oci_identity_group.demo_group
2018/04/18 13:30:23 [DEBUG] Resource state not found for "oci_identity_policy.demo_policy": oci_identity_policy.demo_policy
2018/04/18 13:30:23 [TRACE] Graph after step *terraform.AttachStateTransformer:

oci_identity_compartment.demo_compartment - *terraform.NodePlannableResource
oci_identity_group.demo_group - *terraform.NodePlannableResource
oci_identity_policy.demo_policy - *terraform.NodePlannableResource
2018/04/18 13:30:23 [TRACE] Graph after step *terraform.RootVariableTransformer:

oci_identity_compartment.demo_compartment - *terraform.NodePlannableResource
oci_identity_group.demo_group - *terraform.NodePlannableResource
oci_identity_policy.demo_policy - *terraform.NodePlannableResource
var.ref_availability_domain - *terraform.NodeRootVariable
var.ref_comp_demo - *terraform.NodeRootVariable
var.ref_fingerprint - *terraform.NodeRootVariable
var.ref_group_demo - *terraform.NodeRootVariable
var.ref_policy_demo - *terraform.NodeRootVariable
var.ref_privatekeylocation - *terraform.NodeRootVariable
var.ref_region - *terraform.NodeRootVariable
var.ref_subnet__demo - *terraform.NodeRootVariable
var.ref_tenancy - *terraform.NodeRootVariable
var.ref_user - *terraform.NodeRootVariable
var.ref_vcn_cidr_block_demo - *terraform.NodeRootVariable
var.ref_vcn_demo - *terraform.NodeRootVariable
2018/04/18 13:30:23 [TRACE] ProviderConfigTransformer: Starting for path: []
2018/04/18 13:30:23 [TRACE] Attach provider request: []string{} oci
2018/04/18 13:30:23 [TRACE] Attaching provider config: *config.ProviderConfig{Name:"oci", Alias:"", Version:"", RawConfig:(*config.RawConfig)(0xc0424700e0)}
2018/04/18 13:30:23 [TRACE] Graph after step *terraform.ProviderConfigTransformer:

oci_identity_compartment.demo_compartment - *terraform.NodePlannableResource
oci_identity_group.demo_group - *terraform.NodePlannableResource
oci_identity_policy.demo_policy - *terraform.NodePlannableResource
provider.oci - *terraform.NodeApplyableProvider
var.ref_availability_domain - *terraform.NodeRootVariable
var.ref_comp_demo - *terraform.NodeRootVariable
var.ref_fingerprint - *terraform.NodeRootVariable
var.ref_group_demo - *terraform.NodeRootVariable
var.ref_policy_demo - *terraform.NodeRootVariable
var.ref_privatekeylocation - *terraform.NodeRootVariable
var.ref_region - *terraform.NodeRootVariable
var.ref_subnet__demo - *terraform.NodeRootVariable
var.ref_tenancy - *terraform.NodeRootVariable
var.ref_user - *terraform.NodeRootVariable
var.ref_vcn_cidr_block_demo - *terraform.NodeRootVariable
var.ref_vcn_demo - *terraform.NodeRootVariable
2018/04/18 13:30:23 [TRACE] Graph after step *terraform.MissingProviderTransformer:

oci_identity_compartment.demo_compartment - *terraform.NodePlannableResource
oci_identity_group.demo_group - *terraform.NodePlannableResource
oci_identity_policy.demo_policy - *terraform.NodePlannableResource
provider.oci - *terraform.NodeApplyableProvider
var.ref_availability_domain - *terraform.NodeRootVariable
var.ref_comp_demo - *terraform.NodeRootVariable
var.ref_fingerprint - *terraform.NodeRootVariable
var.ref_group_demo - *terraform.NodeRootVariable
var.ref_policy_demo - *terraform.NodeRootVariable
var.ref_privatekeylocation - *terraform.NodeRootVariable
var.ref_region - *terraform.NodeRootVariable
var.ref_subnet__demo - *terraform.NodeRootVariable
var.ref_tenancy - *terraform.NodeRootVariable
var.ref_user - *terraform.NodeRootVariable
var.ref_vcn_cidr_block_demo - *terraform.NodeRootVariable
var.ref_vcn_demo - *terraform.NodeRootVariable
2018/04/18 13:30:23 [DEBUG] resource oci_identity_group.demo_group using provider provider.oci
2018/04/18 13:30:23 [DEBUG] resource oci_identity_compartment.demo_compartment using provider provider.oci
2018/04/18 13:30:23 [DEBUG] resource oci_identity_policy.demo_policy using provider provider.oci
2018/04/18 13:30:23 [TRACE] Graph after step *terraform.ProviderTransformer:

oci_identity_compartment.demo_compartment - *terraform.NodePlannableResource
provider.oci - *terraform.NodeApplyableProvider
oci_identity_group.demo_group - *terraform.NodePlannableResource
provider.oci - *terraform.NodeApplyableProvider
oci_identity_policy.demo_policy - *terraform.NodePlannableResource
provider.oci - *terraform.NodeApplyableProvider
provider.oci - *terraform.NodeApplyableProvider
var.ref_availability_domain - *terraform.NodeRootVariable
var.ref_comp_demo - *terraform.NodeRootVariable
var.ref_fingerprint - *terraform.NodeRootVariable
var.ref_group_demo - *terraform.NodeRootVariable
var.ref_policy_demo - *terraform.NodeRootVariable
var.ref_privatekeylocation - *terraform.NodeRootVariable
var.ref_region - *terraform.NodeRootVariable
var.ref_subnet__demo - *terraform.NodeRootVariable
var.ref_tenancy - *terraform.NodeRootVariable
var.ref_user - *terraform.NodeRootVariable
var.ref_vcn_cidr_block_demo - *terraform.NodeRootVariable
var.ref_vcn_demo - *terraform.NodeRootVariable
2018/04/18 13:30:23 [TRACE] Graph after step *terraform.PruneProviderTransformer:

oci_identity_compartment.demo_compartment - *terraform.NodePlannableResource
provider.oci - *terraform.NodeApplyableProvider
oci_identity_group.demo_group - *terraform.NodePlannableResource
provider.oci - *terraform.NodeApplyableProvider
oci_identity_policy.demo_policy - *terraform.NodePlannableResource
provider.oci - *terraform.NodeApplyableProvider
provider.oci - *terraform.NodeApplyableProvider
var.ref_availability_domain - *terraform.NodeRootVariable
var.ref_comp_demo - *terraform.NodeRootVariable
var.ref_fingerprint - *terraform.NodeRootVariable
var.ref_group_demo - *terraform.NodeRootVariable
var.ref_policy_demo - *terraform.NodeRootVariable
var.ref_privatekeylocation - *terraform.NodeRootVariable
var.ref_region - *terraform.NodeRootVariable
var.ref_subnet__demo - *terraform.NodeRootVariable
var.ref_tenancy - *terraform.NodeRootVariable
var.ref_user - *terraform.NodeRootVariable
var.ref_vcn_cidr_block_demo - *terraform.NodeRootVariable
var.ref_vcn_demo - *terraform.NodeRootVariable
2018/04/18 13:30:23 [TRACE] Graph after step *terraform.ParentProviderTransformer:

oci_identity_compartment.demo_compartment - *terraform.NodePlannableResource
provider.oci - *terraform.NodeApplyableProvider
oci_identity_group.demo_group - *terraform.NodePlannableResource
provider.oci - *terraform.NodeApplyableProvider
oci_identity_policy.demo_policy - *terraform.NodePlannableResource
provider.oci - *terraform.NodeApplyableProvider
provider.oci - *terraform.NodeApplyableProvider
var.ref_availability_domain - *terraform.NodeRootVariable
var.ref_comp_demo - *terraform.NodeRootVariable
var.ref_fingerprint - *terraform.NodeRootVariable
var.ref_group_demo - *terraform.NodeRootVariable
var.ref_policy_demo - *terraform.NodeRootVariable
var.ref_privatekeylocation - *terraform.NodeRootVariable
var.ref_region - *terraform.NodeRootVariable
var.ref_subnet__demo - *terraform.NodeRootVariable
var.ref_tenancy - *terraform.NodeRootVariable
var.ref_user - *terraform.NodeRootVariable
var.ref_vcn_cidr_block_demo - *terraform.NodeRootVariable
var.ref_vcn_demo - *terraform.NodeRootVariable
2018/04/18 13:30:23 [TRACE] Graph after step *terraform.graphTransformerMulti:

oci_identity_compartment.demo_compartment - *terraform.NodePlannableResource
provider.oci - *terraform.NodeApplyableProvider
oci_identity_group.demo_group - *terraform.NodePlannableResource
provider.oci - *terraform.NodeApplyableProvider
oci_identity_policy.demo_policy - *terraform.NodePlannableResource
provider.oci - *terraform.NodeApplyableProvider
provider.oci - *terraform.NodeApplyableProvider
var.ref_availability_domain - *terraform.NodeRootVariable
var.ref_comp_demo - *terraform.NodeRootVariable
var.ref_fingerprint - *terraform.NodeRootVariable
var.ref_group_demo - *terraform.NodeRootVariable
var.ref_policy_demo - *terraform.NodeRootVariable
var.ref_privatekeylocation - *terraform.NodeRootVariable
var.ref_region - *terraform.NodeRootVariable
var.ref_subnet__demo - *terraform.NodeRootVariable
var.ref_tenancy - *terraform.NodeRootVariable
var.ref_user - *terraform.NodeRootVariable
var.ref_vcn_cidr_block_demo - *terraform.NodeRootVariable
var.ref_vcn_demo - *terraform.NodeRootVariable
2018/04/18 13:30:23 [TRACE] Graph after step *terraform.ModuleVariableTransformer:

oci_identity_compartment.demo_compartment - *terraform.NodePlannableResource
provider.oci - *terraform.NodeApplyableProvider
oci_identity_group.demo_group - *terraform.NodePlannableResource
provider.oci - *terraform.NodeApplyableProvider
oci_identity_policy.demo_policy - *terraform.NodePlannableResource
provider.oci - *terraform.NodeApplyableProvider
provider.oci - *terraform.NodeApplyableProvider
var.ref_availability_domain - *terraform.NodeRootVariable
var.ref_comp_demo - *terraform.NodeRootVariable
var.ref_fingerprint - *terraform.NodeRootVariable
var.ref_group_demo - *terraform.NodeRootVariable
var.ref_policy_demo - *terraform.NodeRootVariable
var.ref_privatekeylocation - *terraform.NodeRootVariable
var.ref_region - *terraform.NodeRootVariable
var.ref_subnet__demo - *terraform.NodeRootVariable
var.ref_tenancy - *terraform.NodeRootVariable
var.ref_user - *terraform.NodeRootVariable
var.ref_vcn_cidr_block_demo - *terraform.NodeRootVariable
var.ref_vcn_demo - *terraform.NodeRootVariable
2018/04/18 13:30:23 [TRACE] Graph after step *terraform.RemovedModuleTransformer:

oci_identity_compartment.demo_compartment - *terraform.NodePlannableResource
provider.oci - *terraform.NodeApplyableProvider
oci_identity_group.demo_group - *terraform.NodePlannableResource
provider.oci - *terraform.NodeApplyableProvider
oci_identity_policy.demo_policy - *terraform.NodePlannableResource
provider.oci - *terraform.NodeApplyableProvider
provider.oci - *terraform.NodeApplyableProvider
var.ref_availability_domain - *terraform.NodeRootVariable
var.ref_comp_demo - *terraform.NodeRootVariable
var.ref_fingerprint - *terraform.NodeRootVariable
var.ref_group_demo - *terraform.NodeRootVariable
var.ref_policy_demo - *terraform.NodeRootVariable
var.ref_privatekeylocation - *terraform.NodeRootVariable
var.ref_region - *terraform.NodeRootVariable
var.ref_subnet__demo - *terraform.NodeRootVariable
var.ref_tenancy - *terraform.NodeRootVariable
var.ref_user - *terraform.NodeRootVariable
var.ref_vcn_cidr_block_demo - *terraform.NodeRootVariable
var.ref_vcn_demo - *terraform.NodeRootVariable
2018/04/18 13:30:23 [DEBUG] ReferenceTransformer: "var.ref_group_demo" references: []
2018/04/18 13:30:23 [DEBUG] ReferenceTransformer: "var.ref_subnet__demo" references: []
2018/04/18 13:30:23 [DEBUG] ReferenceTransformer: "var.ref_comp_demo" references: []
2018/04/18 13:30:23 [DEBUG] ReferenceTransformer: "oci_identity_policy.demo_policy" references: [oci_identity_compartment.demo_compartment var.ref_policy_demo]
2018/04/18 13:30:23 [DEBUG] ReferenceTransformer: "var.ref_user" references: []
2018/04/18 13:30:23 [DEBUG] ReferenceTransformer: "var.ref_policy_demo" references: []
2018/04/18 13:30:23 [DEBUG] ReferenceTransformer: "oci_identity_compartment.demo_compartment" references: [var.ref_comp_demo var.ref_tenancy]
2018/04/18 13:30:23 [DEBUG] ReferenceTransformer: "var.ref_region" references: []
2018/04/18 13:30:23 [DEBUG] ReferenceTransformer: "var.ref_tenancy" references: []
2018/04/18 13:30:23 [DEBUG] ReferenceTransformer: "var.ref_availability_domain" references: []
2018/04/18 13:30:23 [DEBUG] ReferenceTransformer: "var.ref_fingerprint" references: []
2018/04/18 13:30:23 [DEBUG] ReferenceTransformer: "var.ref_privatekeylocation" references: []
2018/04/18 13:30:23 [DEBUG] ReferenceTransformer: "var.ref_vcn_demo" references: []
2018/04/18 13:30:23 [DEBUG] ReferenceTransformer: "var.ref_vcn_cidr_block_demo" references: []
2018/04/18 13:30:23 [DEBUG] ReferenceTransformer: "provider.oci" references: [var.ref_privatekeylocation var.ref_region var.ref_tenancy var.ref_user var.ref_fingerprint]
2018/04/18 13:30:23 [DEBUG] ReferenceTransformer: "oci_identity_group.demo_group" references: [oci_identity_compartment.demo_compartment var.ref_group_demo]
2018/04/18 13:30:23 [TRACE] Graph after step *terraform.ReferenceTransformer:

oci_identity_compartment.demo_compartment - *terraform.NodePlannableResource
provider.oci - *terraform.NodeApplyableProvider
var.ref_comp_demo - *terraform.NodeRootVariable
var.ref_tenancy - *terraform.NodeRootVariable
oci_identity_group.demo_group - *terraform.NodePlannableResource
oci_identity_compartment.demo_compartment - *terraform.NodePlannableResource
provider.oci - *terraform.NodeApplyableProvider
var.ref_group_demo - *terraform.NodeRootVariable
oci_identity_policy.demo_policy - *terraform.NodePlannableResource
oci_identity_compartment.demo_compartment - *terraform.NodePlannableResource
provider.oci - *terraform.NodeApplyableProvider
var.ref_policy_demo - *terraform.NodeRootVariable
provider.oci - *terraform.NodeApplyableProvider
var.ref_fingerprint - *terraform.NodeRootVariable
var.ref_privatekeylocation - *terraform.NodeRootVariable
var.ref_region - *terraform.NodeRootVariable
var.ref_tenancy - *terraform.NodeRootVariable
var.ref_user - *terraform.NodeRootVariable
var.ref_availability_domain - *terraform.NodeRootVariable
var.ref_comp_demo - *terraform.NodeRootVariable
var.ref_fingerprint - *terraform.NodeRootVariable
var.ref_group_demo - *terraform.NodeRootVariable
var.ref_policy_demo - *terraform.NodeRootVariable
var.ref_privatekeylocation - *terraform.NodeRootVariable
var.ref_region - *terraform.NodeRootVariable
var.ref_subnet__demo - *terraform.NodeRootVariable
var.ref_tenancy - *terraform.NodeRootVariable
var.ref_user - *terraform.NodeRootVariable
var.ref_vcn_cidr_block_demo - *terraform.NodeRootVariable
var.ref_vcn_demo - *terraform.NodeRootVariable
2018/04/18 13:30:23 [TRACE] Graph after step *terraform.CountBoundaryTransformer:

meta.count-boundary (count boundary fixup) - *terraform.NodeCountBoundary
oci_identity_compartment.demo_compartment - *terraform.NodePlannableResource
oci_identity_group.demo_group - *terraform.NodePlannableResource
oci_identity_policy.demo_policy - *terraform.NodePlannableResource
provider.oci - *terraform.NodeApplyableProvider
var.ref_availability_domain - *terraform.NodeRootVariable
var.ref_comp_demo - *terraform.NodeRootVariable
var.ref_fingerprint - *terraform.NodeRootVariable
var.ref_group_demo - *terraform.NodeRootVariable
var.ref_policy_demo - *terraform.NodeRootVariable
var.ref_privatekeylocation - *terraform.NodeRootVariable
var.ref_region - *terraform.NodeRootVariable
var.ref_subnet__demo - *terraform.NodeRootVariable
var.ref_tenancy - *terraform.NodeRootVariable
var.ref_user - *terraform.NodeRootVariable
var.ref_vcn_cidr_block_demo - *terraform.NodeRootVariable
var.ref_vcn_demo - *terraform.NodeRootVariable
oci_identity_compartment.demo_compartment - *terraform.NodePlannableResource
provider.oci - *terraform.NodeApplyableProvider
var.ref_comp_demo - *terraform.NodeRootVariable
var.ref_tenancy - *terraform.NodeRootVariable
oci_identity_group.demo_group - *terraform.NodePlannableResource
oci_identity_compartment.demo_compartment - *terraform.NodePlannableResource
provider.oci - *terraform.NodeApplyableProvider
var.ref_group_demo - *terraform.NodeRootVariable
oci_identity_policy.demo_policy - *terraform.NodePlannableResource
oci_identity_compartment.demo_compartment - *terraform.NodePlannableResource
provider.oci - *terraform.NodeApplyableProvider
var.ref_policy_demo - *terraform.NodeRootVariable
provider.oci - *terraform.NodeApplyableProvider
var.ref_fingerprint - *terraform.NodeRootVariable
var.ref_privatekeylocation - *terraform.NodeRootVariable
var.ref_region - *terraform.NodeRootVariable
var.ref_tenancy - *terraform.NodeRootVariable
var.ref_user - *terraform.NodeRootVariable
var.ref_availability_domain - *terraform.NodeRootVariable
var.ref_comp_demo - *terraform.NodeRootVariable
var.ref_fingerprint - *terraform.NodeRootVariable
var.ref_group_demo - *terraform.NodeRootVariable
var.ref_policy_demo - *terraform.NodeRootVariable
var.ref_privatekeylocation - *terraform.NodeRootVariable
var.ref_region - *terraform.NodeRootVariable
var.ref_subnet__demo - *terraform.NodeRootVariable
var.ref_tenancy - *terraform.NodeRootVariable
var.ref_user - *terraform.NodeRootVariable
var.ref_vcn_cidr_block_demo - *terraform.NodeRootVariable
var.ref_vcn_demo - *terraform.NodeRootVariable
2018/04/18 13:30:23 [TRACE] Graph after step *terraform.TargetsTransformer:

meta.count-boundary (count boundary fixup) - *terraform.NodeCountBoundary
oci_identity_compartment.demo_compartment - *terraform.NodePlannableResource
oci_identity_group.demo_group - *terraform.NodePlannableResource
oci_identity_policy.demo_policy - *terraform.NodePlannableResource
provider.oci - *terraform.NodeApplyableProvider
var.ref_availability_domain - *terraform.NodeRootVariable
var.ref_comp_demo - *terraform.NodeRootVariable
var.ref_fingerprint - *terraform.NodeRootVariable
var.ref_group_demo - *terraform.NodeRootVariable
var.ref_policy_demo - *terraform.NodeRootVariable
var.ref_privatekeylocation - *terraform.NodeRootVariable
var.ref_region - *terraform.NodeRootVariable
var.ref_subnet__demo - *terraform.NodeRootVariable
var.ref_tenancy - *terraform.NodeRootVariable
var.ref_user - *terraform.NodeRootVariable
var.ref_vcn_cidr_block_demo - *terraform.NodeRootVariable
var.ref_vcn_demo - *terraform.NodeRootVariable
oci_identity_compartment.demo_compartment - *terraform.NodePlannableResource
provider.oci - *terraform.NodeApplyableProvider
var.ref_comp_demo - *terraform.NodeRootVariable
var.ref_tenancy - *terraform.NodeRootVariable
oci_identity_group.demo_group - *terraform.NodePlannableResource
oci_identity_compartment.demo_compartment - *terraform.NodePlannableResource
provider.oci - *terraform.NodeApplyableProvider
var.ref_group_demo - *terraform.NodeRootVariable
oci_identity_policy.demo_policy - *terraform.NodePlannableResource
oci_identity_compartment.demo_compartment - *terraform.NodePlannableResource
provider.oci - *terraform.NodeApplyableProvider
var.ref_policy_demo - *terraform.NodeRootVariable
provider.oci - *terraform.NodeApplyableProvider
var.ref_fingerprint - *terraform.NodeRootVariable
var.ref_privatekeylocation - *terraform.NodeRootVariable
var.ref_region - *terraform.NodeRootVariable
var.ref_tenancy - *terraform.NodeRootVariable
var.ref_user - *terraform.NodeRootVariable
var.ref_availability_domain - *terraform.NodeRootVariable
var.ref_comp_demo - *terraform.NodeRootVariable
var.ref_fingerprint - *terraform.NodeRootVariable
var.ref_group_demo - *terraform.NodeRootVariable
var.ref_policy_demo - *terraform.NodeRootVariable
var.ref_privatekeylocation - *terraform.NodeRootVariable
var.ref_region - *terraform.NodeRootVariable
var.ref_subnet__demo - *terraform.NodeRootVariable
var.ref_tenancy - *terraform.NodeRootVariable
var.ref_user - *terraform.NodeRootVariable
var.ref_vcn_cidr_block_demo - *terraform.NodeRootVariable
var.ref_vcn_demo - *terraform.NodeRootVariable
2018/04/18 13:30:23 [TRACE] Graph after step *terraform.CloseProviderTransformer:

meta.count-boundary (count boundary fixup) - *terraform.NodeCountBoundary
oci_identity_compartment.demo_compartment - *terraform.NodePlannableResource
oci_identity_group.demo_group - *terraform.NodePlannableResource
oci_identity_policy.demo_policy - *terraform.NodePlannableResource
provider.oci - *terraform.NodeApplyableProvider
var.ref_availability_domain - *terraform.NodeRootVariable
var.ref_comp_demo - *terraform.NodeRootVariable
var.ref_fingerprint - *terraform.NodeRootVariable
var.ref_group_demo - *terraform.NodeRootVariable
var.ref_policy_demo - *terraform.NodeRootVariable
var.ref_privatekeylocation - *terraform.NodeRootVariable
var.ref_region - *terraform.NodeRootVariable
var.ref_subnet__demo - *terraform.NodeRootVariable
var.ref_tenancy - *terraform.NodeRootVariable
var.ref_user - *terraform.NodeRootVariable
var.ref_vcn_cidr_block_demo - *terraform.NodeRootVariable
var.ref_vcn_demo - *terraform.NodeRootVariable
oci_identity_compartment.demo_compartment - *terraform.NodePlannableResource
provider.oci - *terraform.NodeApplyableProvider
var.ref_comp_demo - *terraform.NodeRootVariable
var.ref_tenancy - *terraform.NodeRootVariable
oci_identity_group.demo_group - *terraform.NodePlannableResource
oci_identity_compartment.demo_compartment - *terraform.NodePlannableResource
provider.oci - *terraform.NodeApplyableProvider
var.ref_group_demo - *terraform.NodeRootVariable
oci_identity_policy.demo_policy - *terraform.NodePlannableResource
oci_identity_compartment.demo_compartment - *terraform.NodePlannableResource
provider.oci - *terraform.NodeApplyableProvider
var.ref_policy_demo - *terraform.NodeRootVariable
provider.oci - *terraform.NodeApplyableProvider
var.ref_fingerprint - *terraform.NodeRootVariable
var.ref_privatekeylocation - *terraform.NodeRootVariable
var.ref_region - *terraform.NodeRootVariable
var.ref_tenancy - *terraform.NodeRootVariable
var.ref_user - *terraform.NodeRootVariable
provider.oci (close) - *terraform.graphNodeCloseProvider
oci_identity_compartment.demo_compartment - *terraform.NodePlannableResource
oci_identity_group.demo_group - *terraform.NodePlannableResource
oci_identity_policy.demo_policy - *terraform.NodePlannableResource
provider.oci - *terraform.NodeApplyableProvider
var.ref_availability_domain - *terraform.NodeRootVariable
var.ref_comp_demo - *terraform.NodeRootVariable
var.ref_fingerprint - *terraform.NodeRootVariable
var.ref_group_demo - *terraform.NodeRootVariable
var.ref_policy_demo - *terraform.NodeRootVariable
var.ref_privatekeylocation - *terraform.NodeRootVariable
var.ref_region - *terraform.NodeRootVariable
var.ref_subnet__demo - *terraform.NodeRootVariable
var.ref_tenancy - *terraform.NodeRootVariable
var.ref_user - *terraform.NodeRootVariable
var.ref_vcn_cidr_block_demo - *terraform.NodeRootVariable
var.ref_vcn_demo - *terraform.NodeRootVariable
2018/04/18 13:30:23 [TRACE] Graph after step *terraform.CloseProvisionerTransformer:

meta.count-boundary (count boundary fixup) - *terraform.NodeCountBoundary
oci_identity_compartment.demo_compartment - *terraform.NodePlannableResource
oci_identity_group.demo_group - *terraform.NodePlannableResource
oci_identity_policy.demo_policy - *terraform.NodePlannableResource
provider.oci - *terraform.NodeApplyableProvider
var.ref_availability_domain - *terraform.NodeRootVariable
var.ref_comp_demo - *terraform.NodeRootVariable
var.ref_fingerprint - *terraform.NodeRootVariable
var.ref_group_demo - *terraform.NodeRootVariable
var.ref_policy_demo - *terraform.NodeRootVariable
var.ref_privatekeylocation - *terraform.NodeRootVariable
var.ref_region - *terraform.NodeRootVariable
var.ref_subnet__demo - *terraform.NodeRootVariable
var.ref_tenancy - *terraform.NodeRootVariable
var.ref_user - *terraform.NodeRootVariable
var.ref_vcn_cidr_block_demo - *terraform.NodeRootVariable
var.ref_vcn_demo - *terraform.NodeRootVariable
oci_identity_compartment.demo_compartment - *terraform.NodePlannableResource
provider.oci - *terraform.NodeApplyableProvider
var.ref_comp_demo - *terraform.NodeRootVariable
var.ref_tenancy - *terraform.NodeRootVariable
oci_identity_group.demo_group - *terraform.NodePlannableResource
oci_identity_compartment.demo_compartment - *terraform.NodePlannableResource
provider.oci - *terraform.NodeApplyableProvider
var.ref_group_demo - *terraform.NodeRootVariable
oci_identity_policy.demo_policy - *terraform.NodePlannableResource
oci_identity_compartment.demo_compartment - *terraform.NodePlannableResource
provider.oci - *terraform.NodeApplyableProvider
var.ref_policy_demo - *terraform.NodeRootVariable
provider.oci - *terraform.NodeApplyableProvider
var.ref_fingerprint - *terraform.NodeRootVariable
var.ref_privatekeylocation - *terraform.NodeRootVariable
var.ref_region - *terraform.NodeRootVariable
var.ref_tenancy - *terraform.NodeRootVariable
var.ref_user - *terraform.NodeRootVariable
provider.oci (close) - *terraform.graphNodeCloseProvider
oci_identity_compartment.demo_compartment - *terraform.NodePlannableResource
oci_identity_group.demo_group - *terraform.NodePlannableResource
oci_identity_policy.demo_policy - *terraform.NodePlannableResource
provider.oci - *terraform.NodeApplyableProvider
var.ref_availability_domain - *terraform.NodeRootVariable
var.ref_comp_demo - *terraform.NodeRootVariable
var.ref_fingerprint - *terraform.NodeRootVariable
var.ref_group_demo - *terraform.NodeRootVariable
var.ref_policy_demo - *terraform.NodeRootVariable
var.ref_privatekeylocation - *terraform.NodeRootVariable
var.ref_region - *terraform.NodeRootVariable
var.ref_subnet__demo - *terraform.NodeRootVariable
var.ref_tenancy - *terraform.NodeRootVariable
var.ref_user - *terraform.NodeRootVariable
var.ref_vcn_cidr_block_demo - *terraform.NodeRootVariable
var.ref_vcn_demo - *terraform.NodeRootVariable
2018/04/18 13:30:23 [TRACE] Graph after step *terraform.RootTransformer:

meta.count-boundary (count boundary fixup) - *terraform.NodeCountBoundary
oci_identity_compartment.demo_compartment - *terraform.NodePlannableResource
oci_identity_group.demo_group - *terraform.NodePlannableResource
oci_identity_policy.demo_policy - *terraform.NodePlannableResource
provider.oci - *terraform.NodeApplyableProvider
var.ref_availability_domain - *terraform.NodeRootVariable
var.ref_comp_demo - *terraform.NodeRootVariable
var.ref_fingerprint - *terraform.NodeRootVariable
var.ref_group_demo - *terraform.NodeRootVariable
var.ref_policy_demo - *terraform.NodeRootVariable
var.ref_privatekeylocation - *terraform.NodeRootVariable
var.ref_region - *terraform.NodeRootVariable
var.ref_subnet__demo - *terraform.NodeRootVariable
var.ref_tenancy - *terraform.NodeRootVariable
var.ref_user - *terraform.NodeRootVariable
var.ref_vcn_cidr_block_demo - *terraform.NodeRootVariable
var.ref_vcn_demo - *terraform.NodeRootVariable
oci_identity_compartment.demo_compartment - *terraform.NodePlannableResource
provider.oci - *terraform.NodeApplyableProvider
var.ref_comp_demo - *terraform.NodeRootVariable
var.ref_tenancy - *terraform.NodeRootVariable
oci_identity_group.demo_group - *terraform.NodePlannableResource
oci_identity_compartment.demo_compartment - *terraform.NodePlannableResource
provider.oci - *terraform.NodeApplyableProvider
var.ref_group_demo - *terraform.NodeRootVariable
oci_identity_policy.demo_policy - *terraform.NodePlannableResource
oci_identity_compartment.demo_compartment - *terraform.NodePlannableResource
provider.oci - *terraform.NodeApplyableProvider
var.ref_policy_demo - *terraform.NodeRootVariable
provider.oci - *terraform.NodeApplyableProvider
var.ref_fingerprint - *terraform.NodeRootVariable
var.ref_privatekeylocation - *terraform.NodeRootVariable
var.ref_region - *terraform.NodeRootVariable
var.ref_tenancy - *terraform.NodeRootVariable
var.ref_user - *terraform.NodeRootVariable
provider.oci (close) - *terraform.graphNodeCloseProvider
oci_identity_compartment.demo_compartment - *terraform.NodePlannableResource
oci_identity_group.demo_group - *terraform.NodePlannableResource
oci_identity_policy.demo_policy - *terraform.NodePlannableResource
provider.oci - *terraform.NodeApplyableProvider
root - terraform.graphNodeRoot
meta.count-boundary (count boundary fixup) - *terraform.NodeCountBoundary
provider.oci (close) - *terraform.graphNodeCloseProvider
var.ref_availability_domain - *terraform.NodeRootVariable
var.ref_comp_demo - *terraform.NodeRootVariable
var.ref_fingerprint - *terraform.NodeRootVariable
var.ref_group_demo - *terraform.NodeRootVariable
var.ref_policy_demo - *terraform.NodeRootVariable
var.ref_privatekeylocation - *terraform.NodeRootVariable
var.ref_region - *terraform.NodeRootVariable
var.ref_subnet__demo - *terraform.NodeRootVariable
var.ref_tenancy - *terraform.NodeRootVariable
var.ref_user - *terraform.NodeRootVariable
var.ref_vcn_cidr_block_demo - *terraform.NodeRootVariable
var.ref_vcn_demo - *terraform.NodeRootVariable
2018/04/18 13:30:23 [TRACE] Graph after step *terraform.TransitiveReductionTransformer:

meta.count-boundary (count boundary fixup) - *terraform.NodeCountBoundary
oci_identity_group.demo_group - *terraform.NodePlannableResource
oci_identity_policy.demo_policy - *terraform.NodePlannableResource
var.ref_availability_domain - *terraform.NodeRootVariable
var.ref_subnet__demo - *terraform.NodeRootVariable
var.ref_vcn_cidr_block_demo - *terraform.NodeRootVariable
var.ref_vcn_demo - *terraform.NodeRootVariable
oci_identity_compartment.demo_compartment - *terraform.NodePlannableResource
provider.oci - *terraform.NodeApplyableProvider
var.ref_comp_demo - *terraform.NodeRootVariable
oci_identity_group.demo_group - *terraform.NodePlannableResource
oci_identity_compartment.demo_compartment - *terraform.NodePlannableResource
var.ref_group_demo - *terraform.NodeRootVariable
oci_identity_policy.demo_policy - *terraform.NodePlannableResource
oci_identity_compartment.demo_compartment - *terraform.NodePlannableResource
var.ref_policy_demo - *terraform.NodeRootVariable
provider.oci - *terraform.NodeApplyableProvider
var.ref_fingerprint - *terraform.NodeRootVariable
var.ref_privatekeylocation - *terraform.NodeRootVariable
var.ref_region - *terraform.NodeRootVariable
var.ref_tenancy - *terraform.NodeRootVariable
var.ref_user - *terraform.NodeRootVariable
provider.oci (close) - *terraform.graphNodeCloseProvider
oci_identity_group.demo_group - *terraform.NodePlannableResource
oci_identity_policy.demo_policy - *terraform.NodePlannableResource
root - terraform.graphNodeRoot
meta.count-boundary (count boundary fixup) - *terraform.NodeCountBoundary
provider.oci (close) - *terraform.graphNodeCloseProvider
var.ref_availability_domain - *terraform.NodeRootVariable
var.ref_comp_demo - *terraform.NodeRootVariable
var.ref_fingerprint - *terraform.NodeRootVariable
var.ref_group_demo - *terraform.NodeRootVariable
var.ref_policy_demo - *terraform.NodeRootVariable
var.ref_privatekeylocation - *terraform.NodeRootVariable
var.ref_region - *terraform.NodeRootVariable
var.ref_subnet__demo - *terraform.NodeRootVariable
var.ref_tenancy - *terraform.NodeRootVariable
var.ref_user - *terraform.NodeRootVariable
var.ref_vcn_cidr_block_demo - *terraform.NodeRootVariable
var.ref_vcn_demo - *terraform.NodeRootVariable
2018/04/18 13:30:23 [DEBUG] Starting graph walk: walkPlan
2018/04/18 13:30:23 [TRACE] dag/walk: added new vertex: "meta.count-boundary (count boundary fixup)"
2018/04/18 13:30:23 [TRACE] dag/walk: added new vertex: "var.ref_availability_domain"
2018/04/18 13:30:23 [TRACE] dag/walk: added new vertex: "var.ref_fingerprint"
2018/04/18 13:30:23 [TRACE] dag/walk: added new vertex: "var.ref_user"
2018/04/18 13:30:23 [TRACE] dag/walk: added new vertex: "provider.oci (close)"
2018/04/18 13:30:23 [TRACE] dag/walk: added new vertex: "var.ref_region"
2018/04/18 13:30:23 [TRACE] dag/walk: added new vertex: "provider.oci"
2018/04/18 13:30:23 [TRACE] dag/walk: added new vertex: "var.ref_comp_demo"
2018/04/18 13:30:23 [TRACE] dag/walk: added new vertex: "var.ref_subnet__demo"
2018/04/18 13:30:23 [TRACE] dag/walk: added new vertex: "root"
2018/04/18 13:30:23 [TRACE] dag/walk: added new vertex: "oci_identity_policy.demo_policy"
2018/04/18 13:30:23 [TRACE] dag/walk: added new vertex: "var.ref_policy_demo"
2018/04/18 13:30:23 [TRACE] dag/walk: added new vertex: "var.ref_tenancy"
2018/04/18 13:30:23 [TRACE] dag/walk: added new vertex: "var.ref_privatekeylocation"
2018/04/18 13:30:23 [TRACE] dag/walk: added new vertex: "var.ref_group_demo"
2018/04/18 13:30:23 [TRACE] dag/walk: added new vertex: "oci_identity_compartment.demo_compartment"
2018/04/18 13:30:23 [TRACE] dag/walk: added new vertex: "var.ref_vcn_demo"
2018/04/18 13:30:23 [TRACE] dag/walk: added new vertex: "var.ref_vcn_cidr_block_demo"
2018/04/18 13:30:23 [TRACE] dag/walk: added new vertex: "oci_identity_group.demo_group"
2018/04/18 13:30:23 [TRACE] dag/walk: added edge: "oci_identity_group.demo_group" waiting on "var.ref_group_demo"
2018/04/18 13:30:23 [TRACE] dag/walk: added edge: "oci_identity_policy.demo_policy" waiting on "var.ref_policy_demo"
2018/04/18 13:30:23 [TRACE] dag/walk: added edge: "root" waiting on "provider.oci (close)"
2018/04/18 13:30:23 [TRACE] dag/walk: added edge: "provider.oci (close)" waiting on "oci_identity_group.demo_group"
2018/04/18 13:30:23 [TRACE] dag/walk: added edge: "provider.oci" waiting on "var.ref_fingerprint"
2018/04/18 13:30:23 [TRACE] dag/walk: added edge: "provider.oci" waiting on "var.ref_privatekeylocation"
2018/04/18 13:30:23 [TRACE] dag/walk: added edge: "meta.count-boundary (count boundary fixup)" waiting on "var.ref_vcn_demo"
2018/04/18 13:30:23 [TRACE] dag/walk: added edge: "root" waiting on "meta.count-boundary (count boundary fixup)"
2018/04/18 13:30:23 [TRACE] dag/walk: added edge: "oci_identity_compartment.demo_compartment" waiting on "var.ref_comp_demo"
2018/04/18 13:30:23 [TRACE] dag/walk: added edge: "meta.count-boundary (count boundary fixup)" waiting on "oci_identity_group.demo_group"
2018/04/18 13:30:23 [TRACE] dag/walk: added edge: "meta.count-boundary (count boundary fixup)" waiting on "oci_identity_policy.demo_policy"
2018/04/18 13:30:23 [TRACE] dag/walk: added edge: "provider.oci" waiting on "var.ref_region"
2018/04/18 13:30:23 [TRACE] dag/walk: added edge: "provider.oci (close)" waiting on "oci_identity_policy.demo_policy"
2018/04/18 13:30:23 [TRACE] dag/walk: added edge: "oci_identity_policy.demo_policy" waiting on "oci_identity_compartment.demo_compartment"
2018/04/18 13:30:23 [TRACE] dag/walk: added edge: "provider.oci" waiting on "var.ref_user"
2018/04/18 13:30:23 [TRACE] dag/walk: added edge: "oci_identity_group.demo_group" waiting on "oci_identity_compartment.demo_compartment"
2018/04/18 13:30:23 [TRACE] dag/walk: added edge: "provider.oci" waiting on "var.ref_tenancy"
2018/04/18 13:30:23 [TRACE] dag/walk: added edge: "meta.count-boundary (count boundary fixup)" waiting on "var.ref_availability_domain"
2018/04/18 13:30:23 [TRACE] dag/walk: added edge: "meta.count-boundary (count boundary fixup)" waiting on "var.ref_subnet__demo"
2018/04/18 13:30:23 [TRACE] dag/walk: added edge: "oci_identity_compartment.demo_compartment" waiting on "provider.oci"
2018/04/18 13:30:23 [TRACE] dag/walk: added edge: "meta.count-boundary (count boundary fixup)" waiting on "var.ref_vcn_cidr_block_demo"
2018/04/18 13:30:23 [TRACE] dag/walk: dependencies changed for "oci_identity_policy.demo_policy", sending new deps
2018/04/18 13:30:23 [TRACE] dag/walk: dependencies changed for "root", sending new deps
2018/04/18 13:30:23 [TRACE] dag/walk: dependencies changed for "provider.oci (close)", sending new deps
2018/04/18 13:30:23 [TRACE] dag/walk: dependencies changed for "provider.oci", sending new deps
2018/04/18 13:30:23 [TRACE] dag/walk: dependencies changed for "meta.count-boundary (count boundary fixup)", sending new deps
2018/04/18 13:30:23 [TRACE] dag/walk: dependencies changed for "oci_identity_compartment.demo_compartment", sending new deps
2018/04/18 13:30:23 [TRACE] dag/walk: dependencies changed for "oci_identity_group.demo_group", sending new deps
2018/04/18 13:30:23 [TRACE] dag/walk: walking "var.ref_region"
2018/04/18 13:30:23 [TRACE] vertex 'root.var.ref_region': walking
2018/04/18 13:30:23 [TRACE] dag/walk: walking "var.ref_user"
2018/04/18 13:30:23 [TRACE] vertex 'root.var.ref_user': walking
2018/04/18 13:30:23 [TRACE] dag/walk: walking "var.ref_policy_demo"
2018/04/18 13:30:23 [TRACE] vertex 'root.var.ref_policy_demo': walking
2018/04/18 13:30:23 [TRACE] dag/walk: walking "var.ref_tenancy"
2018/04/18 13:30:23 [TRACE] vertex 'root.var.ref_tenancy': walking
2018/04/18 13:30:23 [TRACE] dag/walk: walking "var.ref_comp_demo"
2018/04/18 13:30:23 [TRACE] vertex 'root.var.ref_comp_demo': walking
2018/04/18 13:30:23 [TRACE] dag/walk: walking "var.ref_subnet__demo"
2018/04/18 13:30:23 [TRACE] vertex 'root.var.ref_subnet__demo': walking
2018/04/18 13:30:23 [TRACE] dag/walk: walking "var.ref_vcn_demo"
2018/04/18 13:30:23 [TRACE] vertex 'root.var.ref_vcn_demo': walking
2018/04/18 13:30:23 [TRACE] dag/walk: walking "var.ref_vcn_cidr_block_demo"
2018/04/18 13:30:23 [TRACE] vertex 'root.var.ref_vcn_cidr_block_demo': walking
2018/04/18 13:30:23 [TRACE] dag/walk: walking "var.ref_privatekeylocation"
2018/04/18 13:30:23 [TRACE] vertex 'root.var.ref_privatekeylocation': walking
2018/04/18 13:30:23 [TRACE] dag/walk: walking "var.ref_group_demo"
2018/04/18 13:30:23 [TRACE] vertex 'root.var.ref_group_demo': walking
2018/04/18 13:30:23 [TRACE] dag/walk: walking "var.ref_availability_domain"
2018/04/18 13:30:23 [TRACE] vertex 'root.var.ref_availability_domain': walking
2018/04/18 13:30:23 [TRACE] dag/walk: walking "var.ref_fingerprint"
2018/04/18 13:30:23 [TRACE] vertex 'root.var.ref_fingerprint': walking
2018/04/18 13:30:23 [TRACE] dag/walk: walking "provider.oci"
2018/04/18 13:30:23 [TRACE] vertex 'root.provider.oci': walking
2018/04/18 13:30:23 [TRACE] vertex 'root.provider.oci': evaluating
2018/04/18 13:30:23 [TRACE] [walkPlan] Entering eval tree: provider.oci
2018/04/18 13:30:23 [TRACE] root: eval: *terraform.EvalSequence
2018/04/18 13:30:23 [TRACE] root: eval: *terraform.EvalInitProvider
2018/04/18 13:30:23 [TRACE] root: eval: terraform.EvalNoop
2018/04/18 13:30:23 [TRACE] root: eval: terraform.EvalNoop
2018/04/18 13:30:23 [TRACE] root: eval: *terraform.EvalOpFilter
2018/04/18 13:30:23 [TRACE] root: eval: *terraform.EvalSequence
2018/04/18 13:30:23 [TRACE] root: eval: *terraform.EvalGetProvider
2018/04/18 13:30:23 [TRACE] root: eval: *terraform.EvalInterpolateProvider
2018/04/18 13:30:23 [TRACE] root: eval: *terraform.EvalBuildProviderConfig
2018/04/18 13:30:23 [TRACE] root: eval: *terraform.EvalOpFilter
2018/04/18 13:30:23 [TRACE] root: eval: *terraform.EvalSequence
2018/04/18 13:30:23 [TRACE] root: eval: *terraform.EvalConfigProvider
2018/04/18 13:30:23 [TRACE] [walkPlan] Exiting eval tree: provider.oci
2018/04/18 13:30:23 [TRACE] dag/walk: walking "oci_identity_compartment.demo_compartment"
2018/04/18 13:30:23 [TRACE] vertex 'root.oci_identity_compartment.demo_compartment': walking
2018/04/18 13:30:23 [TRACE] vertex 'root.oci_identity_compartment.demo_compartment': evaluating
2018/04/18 13:30:23 [TRACE] [walkPlan] Entering eval tree: oci_identity_compartment.demo_compartment
2018/04/18 13:30:23 [TRACE] root: eval: *terraform.EvalSequence
2018/04/18 13:30:23 [TRACE] root: eval: *terraform.EvalInterpolate
2018/04/18 13:30:23 [TRACE] root: eval: *terraform.EvalCountCheckComputed
2018/04/18 13:30:23 [TRACE] root: eval: *terraform.EvalIf
2018/04/18 13:30:23 [TRACE] root: eval: *terraform.EvalCountFixZeroOneBoundary
2018/04/18 13:30:23 [TRACE] [walkPlan] Exiting eval tree: oci_identity_compartment.demo_compartment
2018/04/18 13:30:23 [TRACE] vertex 'root.oci_identity_compartment.demo_compartment': expanding/walking dynamic subgraph
2018/04/18 13:30:23 [TRACE] Graph after step *terraform.ResourceCountTransformer:

oci_identity_compartment.demo_compartment - *terraform.NodePlannableResourceInstance
2018/04/18 13:30:23 [TRACE] OrphanResourceCount: Starting...
2018/04/18 13:30:23 [TRACE] Graph after step *terraform.OrphanResourceCountTransformer:

oci_identity_compartment.demo_compartment - *terraform.NodePlannableResourceInstance
2018/04/18 13:30:23 [DEBUG] Resource state not found for "oci_identity_compartment.demo_compartment": oci_identity_compartment.demo_compartment
2018/04/18 13:30:23 [TRACE] Graph after step *terraform.AttachStateTransformer:

oci_identity_compartment.demo_compartment - *terraform.NodePlannableResourceInstance
2018/04/18 13:30:23 [TRACE] Graph after step *terraform.TargetsTransformer:

oci_identity_compartment.demo_compartment - *terraform.NodePlannableResourceInstance
2018/04/18 13:30:23 [DEBUG] ReferenceTransformer: "oci_identity_compartment.demo_compartment" references: []
2018/04/18 13:30:23 [TRACE] Graph after step *terraform.ReferenceTransformer:

oci_identity_compartment.demo_compartment - *terraform.NodePlannableResourceInstance
2018/04/18 13:30:23 [TRACE] Graph after step *terraform.RootTransformer:

oci_identity_compartment.demo_compartment - *terraform.NodePlannableResourceInstance
2018/04/18 13:30:23 [TRACE] dag/walk: added new vertex: "oci_identity_compartment.demo_compartment"
2018/04/18 13:30:23 [TRACE] dag/walk: walking "oci_identity_compartment.demo_compartment"
2018/04/18 13:30:23 [TRACE] vertex 'root.oci_identity_compartment.demo_compartment': walking
2018/04/18 13:30:23 [TRACE] vertex 'root.oci_identity_compartment.demo_compartment': evaluating
2018/04/18 13:30:23 [TRACE] [walkPlan] Entering eval tree: oci_identity_compartment.demo_compartment
2018/04/18 13:30:23 [TRACE] root: eval: *terraform.EvalSequence
2018/04/18 13:30:23 [TRACE] root: eval: *terraform.EvalInterpolate
2018/04/18 13:30:23 [TRACE] root: eval: *terraform.EvalGetProvider
2018/04/18 13:30:23 [TRACE] root: eval: *terraform.EvalValidateResource
2018/04/18 13:30:23 [TRACE] root: eval: *terraform.EvalReadState
2018/04/18 13:30:23 [TRACE] root: eval: *terraform.EvalDiff
2018/04/18 13:30:23 [TRACE] root: eval: *terraform.EvalCheckPreventDestroy
2018/04/18 13:30:23 [TRACE] root: eval: *terraform.EvalWriteState
2018/04/18 13:30:23 [TRACE] root: eval: *terraform.EvalWriteDiff
2018/04/18 13:30:23 [TRACE] [walkPlan] Exiting eval tree: oci_identity_compartment.demo_compartment
2018/04/18 13:30:23 [TRACE] dag/walk: walking "oci_identity_policy.demo_policy"
2018/04/18 13:30:23 [TRACE] vertex 'root.oci_identity_policy.demo_policy': walking
2018/04/18 13:30:23 [TRACE] vertex 'root.oci_identity_policy.demo_policy': evaluating
2018/04/18 13:30:23 [TRACE] [walkPlan] Entering eval tree: oci_identity_policy.demo_policy
2018/04/18 13:30:23 [TRACE] root: eval: *terraform.EvalSequence
2018/04/18 13:30:23 [TRACE] root: eval: *terraform.EvalInterpolate
2018/04/18 13:30:23 [TRACE] root: eval: *terraform.EvalCountCheckComputed
2018/04/18 13:30:23 [TRACE] root: eval: *terraform.EvalIf
2018/04/18 13:30:23 [TRACE] root: eval: *terraform.EvalCountFixZeroOneBoundary
2018/04/18 13:30:23 [TRACE] [walkPlan] Exiting eval tree: oci_identity_policy.demo_policy
2018/04/18 13:30:23 [TRACE] vertex 'root.oci_identity_policy.demo_policy': expanding/walking dynamic subgraph
2018/04/18 13:30:23 [TRACE] Graph after step *terraform.ResourceCountTransformer:

oci_identity_policy.demo_policy - *terraform.NodePlannableResourceInstance
2018/04/18 13:30:23 [TRACE] OrphanResourceCount: Starting...
2018/04/18 13:30:23 [TRACE] Graph after step *terraform.OrphanResourceCountTransformer:

oci_identity_policy.demo_policy - *terraform.NodePlannableResourceInstance
2018/04/18 13:30:23 [DEBUG] Resource state not found for "oci_identity_policy.demo_policy": oci_identity_policy.demo_policy
2018/04/18 13:30:23 [TRACE] Graph after step *terraform.AttachStateTransformer:

oci_identity_policy.demo_policy - *terraform.NodePlannableResourceInstance
2018/04/18 13:30:23 [TRACE] Graph after step *terraform.TargetsTransformer:

oci_identity_policy.demo_policy - *terraform.NodePlannableResourceInstance
2018/04/18 13:30:23 [DEBUG] ReferenceTransformer: "oci_identity_policy.demo_policy" references: []
2018/04/18 13:30:23 [TRACE] Graph after step *terraform.ReferenceTransformer:

oci_identity_policy.demo_policy - *terraform.NodePlannableResourceInstance
2018/04/18 13:30:23 [TRACE] Graph after step *terraform.RootTransformer:

oci_identity_policy.demo_policy - *terraform.NodePlannableResourceInstance
2018/04/18 13:30:23 [TRACE] dag/walk: added new vertex: "oci_identity_policy.demo_policy"
2018/04/18 13:30:23 [TRACE] dag/walk: walking "oci_identity_policy.demo_policy"
2018/04/18 13:30:23 [TRACE] vertex 'root.oci_identity_policy.demo_policy': walking
2018/04/18 13:30:23 [TRACE] vertex 'root.oci_identity_policy.demo_policy': evaluating
2018/04/18 13:30:23 [TRACE] [walkPlan] Entering eval tree: oci_identity_policy.demo_policy
2018/04/18 13:30:23 [TRACE] root: eval: *terraform.EvalSequence
2018/04/18 13:30:23 [TRACE] root: eval: *terraform.EvalInterpolate
2018/04/18 13:30:23 [TRACE] root: eval: *terraform.EvalGetProvider
2018/04/18 13:30:23 [TRACE] root: eval: *terraform.EvalValidateResource
2018/04/18 13:30:23 [TRACE] dag/walk: walking "oci_identity_group.demo_group"
2018/04/18 13:30:23 [TRACE] vertex 'root.oci_identity_group.demo_group': walking
2018/04/18 13:30:23 [TRACE] vertex 'root.oci_identity_group.demo_group': evaluating
2018/04/18 13:30:23 [TRACE] [walkPlan] Entering eval tree: oci_identity_group.demo_group
2018/04/18 13:30:23 [TRACE] root: eval: *terraform.EvalSequence
2018/04/18 13:30:23 [TRACE] root: eval: *terraform.EvalInterpolate
2018/04/18 13:30:23 [TRACE] root: eval: *terraform.EvalCountCheckComputed
2018/04/18 13:30:23 [TRACE] root: eval: *terraform.EvalIf
2018/04/18 13:30:23 [TRACE] root: eval: *terraform.EvalCountFixZeroOneBoundary
2018/04/18 13:30:23 [TRACE] [walkPlan] Exiting eval tree: oci_identity_group.demo_group
2018/04/18 13:30:23 [TRACE] vertex 'root.oci_identity_group.demo_group': expanding/walking dynamic subgraph
2018/04/18 13:30:23 [TRACE] Graph after step *terraform.ResourceCountTransformer:

oci_identity_group.demo_group - *terraform.NodePlannableResourceInstance
2018/04/18 13:30:23 [TRACE] OrphanResourceCount: Starting...
2018/04/18 13:30:23 [TRACE] Graph after step *terraform.OrphanResourceCountTransformer:

oci_identity_group.demo_group - *terraform.NodePlannableResourceInstance
2018/04/18 13:30:23 [DEBUG] Resource state not found for "oci_identity_group.demo_group": oci_identity_group.demo_group
2018/04/18 13:30:23 [TRACE] Graph after step *terraform.AttachStateTransformer:

oci_identity_group.demo_group - *terraform.NodePlannableResourceInstance
2018/04/18 13:30:23 [TRACE] Graph after step *terraform.TargetsTransformer:

oci_identity_group.demo_group - *terraform.NodePlannableResourceInstance
2018/04/18 13:30:23 [DEBUG] ReferenceTransformer: "oci_identity_group.demo_group" references: []
2018/04/18 13:30:23 [TRACE] Graph after step *terraform.ReferenceTransformer:

oci_identity_group.demo_group - *terraform.NodePlannableResourceInstance
2018/04/18 13:30:23 [TRACE] Graph after step *terraform.RootTransformer:

oci_identity_group.demo_group - *terraform.NodePlannableResourceInstance
2018/04/18 13:30:23 [TRACE] dag/walk: added new vertex: "oci_identity_group.demo_group"
2018/04/18 13:30:23 [TRACE] dag/walk: walking "oci_identity_group.demo_group"
2018/04/18 13:30:23 [TRACE] vertex 'root.oci_identity_group.demo_group': walking
2018/04/18 13:30:23 [TRACE] vertex 'root.oci_identity_group.demo_group': evaluating
2018/04/18 13:30:23 [TRACE] [walkPlan] Entering eval tree: oci_identity_group.demo_group
2018/04/18 13:30:23 [TRACE] root: eval: *terraform.EvalSequence
2018/04/18 13:30:23 [TRACE] root: eval: *terraform.EvalInterpolate
2018/04/18 13:30:23 [TRACE] root: eval: *terraform.EvalGetProvider
2018/04/18 13:30:23 [TRACE] root: eval: *terraform.EvalValidateResource
2018/04/18 13:30:23 [TRACE] root: eval: *terraform.EvalReadState
2018/04/18 13:30:23 [TRACE] root: eval: *terraform.EvalDiff
2018/04/18 13:30:23 [TRACE] root: eval: *terraform.EvalReadState
2018/04/18 13:30:23 [TRACE] root: eval: *terraform.EvalDiff
2018/04/18 13:30:23 [TRACE] root: eval: *terraform.EvalCheckPreventDestroy
2018/04/18 13:30:23 [TRACE] root: eval: *terraform.EvalWriteState
2018/04/18 13:30:23 [TRACE] root: eval: *terraform.EvalWriteDiff
2018/04/18 13:30:23 [TRACE] [walkPlan] Exiting eval tree: oci_identity_policy.demo_policy
2018/04/18 13:30:23 [TRACE] root: eval: *terraform.EvalCheckPreventDestroy
2018/04/18 13:30:23 [TRACE] root: eval: *terraform.EvalWriteState
2018/04/18 13:30:23 [TRACE] root: eval: *terraform.EvalWriteDiff
2018/04/18 13:30:23 [TRACE] [walkPlan] Exiting eval tree: oci_identity_group.demo_group
2018/04/18 13:30:23 [TRACE] dag/walk: walking "provider.oci (close)"
2018/04/18 13:30:23 [TRACE] vertex 'root.provider.oci (close)': walking
2018/04/18 13:30:23 [TRACE] vertex 'root.provider.oci (close)': evaluating
2018/04/18 13:30:23 [TRACE] [walkPlan] Entering eval tree: provider.oci (close)
2018/04/18 13:30:23 [TRACE] root: eval: *terraform.EvalCloseProvider
2018/04/18 13:30:23 [TRACE] [walkPlan] Exiting eval tree: provider.oci (close)
2018/04/18 13:30:23 [TRACE] dag/walk: walking "meta.count-boundary (count boundary fixup)"
2018/04/18 13:30:23 [TRACE] vertex 'root.meta.count-boundary (count boundary fixup)': walking
2018/04/18 13:30:23 [TRACE] vertex 'root.meta.count-boundary (count boundary fixup)': evaluating
2018/04/18 13:30:23 [TRACE] [walkPlan] Entering eval tree: meta.count-boundary (count boundary fixup)
2018/04/18 13:30:23 [TRACE] root: eval: *terraform.EvalCountFixZeroOneBoundaryGlobal
2018/04/18 13:30:23 [TRACE] [walkPlan] Exiting eval tree: meta.count-boundary (count boundary fixup)
2018/04/18 13:30:23 [TRACE] dag/walk: walking "root"
2018/04/18 13:30:23 [TRACE] vertex 'root.root': walking
2018/04/18 13:30:23 [DEBUG] command: asking for input: "Do you want to perform these actions?"
2018/04/18 13:30:27 [INFO] terraform: building graph: GraphTypeApply
2018/04/18 13:30:27 [TRACE] DiffTransformer: starting
2018/04/18 13:30:27 [TRACE] DiffTransformer: Module: CREATE: oci_identity_compartment.demo_compartment
compartment_id: "" => "ocid1.tenancy.oc1..aaaaaaaa3pi2x5yqidqenk4ybimduwxvmlwcuxuetz7k3iuini4jjlmmy36q" (forces new resource)
description: "" => "Comparment for Demo Refrence Architeture"
inactive_state: "" => ""
name: "" => "Demo_Compartment"
state: "" => ""
time_created: "" => ""
time_modified: "" => ""
CREATE: oci_identity_group.demo_group
compartment_id: "" => "" (forces new resource)
description: "" => "Group who have access to Demo Compartment - NOT FOR PROD"
inactive_state: "" => ""
name: "" => "Demo_Group" (forces new resource)
state: "" => ""
time_created: "" => ""
time_modified: "" => ""
CREATE: oci_identity_policy.demo_policy
ETag: "" => ""
compartment_id: "" => "" (forces new resource)
description: "" => "Give full access to all the resource in the Demo Compartment - NOT FOR PROD"
inactive_state: "" => ""
lastUpdateETag: "" => ""
name: "" => "Demo_Group_Full_Access" (forces new resource)
policyHash: "" => ""
state: "" => ""
statements.#: "" => "1"
statements.0: "" => "Allow group Demo_Group to manage all-resources in compartment Demo_Compartment"
time_created: "" => ""
time_modified: "" => ""
version_date: "" => "2018-04-17"
2018/04/18 13:30:27 [TRACE] DiffTransformer: Resource "oci_identity_compartment.demo_compartment": *terraform.InstanceDiff{mu:sync.Mutex{state:0, sema:0x0}, Attributes:map[string]*terraform.ResourceAttrDiff{"state":*terraform.ResourceAttrDiff{Old:"", New:"", NewComputed:true, NewRemoved:false, NewExtra:interface {}(nil), RequiresNew:false, Sensitive:false, Type:0x0}, "compartment_id":*terraform.ResourceAttrDiff{Old:"", New:"ocid1.tenancy.oc1..aaaaaaaa3pi2x5yqidqenk4ybimduwxvmlwcuxuetz7k3iuini4jjlmmy36q", NewComputed:false, NewRemoved:false, NewExtra:interface {}(nil), RequiresNew:true, Sensitive:false, Type:0x0}, "id":*terraform.ResourceAttrDiff{Old:"", New:"", NewComputed:true, NewRemoved:false, NewExtra:interface {}(nil), RequiresNew:true, Sensitive:false, Type:0x2}, "inactive_state":*terraform.ResourceAttrDiff{Old:"", New:"", NewComputed:true, NewRemoved:false, NewExtra:interface {}(nil), RequiresNew:false, Sensitive:false, Type:0x0}, "time_created":*terraform.ResourceAttrDiff{Old:"", New:"", NewComputed:true, NewRemoved:false, NewExtra:interface {}(nil), RequiresNew:false, Sensitive:false, Type:0x0}, "time_modified":*terraform.ResourceAttrDiff{Old:"", New:"", NewComputed:true, NewRemoved:false, NewExtra:interface {}(nil), RequiresNew:false, Sensitive:false, Type:0x0}, "description":*terraform.ResourceAttrDiff{Old:"", New:"Comparment for Demo Refrence Architeture", NewComputed:false, NewRemoved:false, NewExtra:interface {}(nil), RequiresNew:false, Sensitive:false, Type:0x0}, "name":*terraform.ResourceAttrDiff{Old:"", New:"Demo_Compartment", NewComputed:false, NewRemoved:false, NewExtra:interface {}(nil), RequiresNew:false, Sensitive:false, Type:0x0}}, Destroy:false, DestroyDeposed:false, DestroyTainted:false, Meta:map[string]interface {}(nil)}
2018/04/18 13:30:27 [TRACE] DiffTransformer: Resource "oci_identity_policy.demo_policy": *terraform.InstanceDiff{mu:sync.Mutex{state:0, sema:0x0}, Attributes:map[string]*terraform.ResourceAttrDiff{"description":*terraform.ResourceAttrDiff{Old:"", New:"Give full access to all the resource in the Demo Compartment - NOT FOR PROD", NewComputed:false, NewRemoved:false, NewExtra:interface {}(nil), RequiresNew:false, Sensitive:false, Type:0x0}, "state":*terraform.ResourceAttrDiff{Old:"", New:"", NewComputed:true, NewRemoved:false, NewExtra:interface {}(nil), RequiresNew:false, Sensitive:false, Type:0x0}, "statements.#":*terraform.ResourceAttrDiff{Old:"", New:"1", NewComputed:false, NewRemoved:false, NewExtra:interface {}(nil), RequiresNew:false, Sensitive:false, Type:0x0}, "statements.0":*terraform.ResourceAttrDiff{Old:"", New:"Allow group Demo_Group to manage all-resources in compartment Demo_Compartment", NewComputed:false, NewRemoved:false, NewExtra:interface {}(nil), RequiresNew:false, Sensitive:false, Type:0x0}, "version_date":*terraform.ResourceAttrDiff{Old:"", New:"2018-04-17", NewComputed:false, NewRemoved:false, NewExtra:interface {}(nil), RequiresNew:false, Sensitive:false, Type:0x0}, "name":*terraform.ResourceAttrDiff{Old:"", New:"Demo_Group_Full_Access", NewComputed:false, NewRemoved:false, NewExtra:interface {}(nil), RequiresNew:true, Sensitive:false, Type:0x0}, "ETag":*terraform.ResourceAttrDiff{Old:"", New:"", NewComputed:true, NewRemoved:false, NewExtra:interface {}(nil), RequiresNew:false, Sensitive:false, Type:0x0}, "lastUpdateETag":*terraform.ResourceAttrDiff{Old:"", New:"", NewComputed:true, NewRemoved:false, NewExtra:interface {}(nil), RequiresNew:false, Sensitive:false, Type:0x0}, "policyHash":*terraform.ResourceAttrDiff{Old:"", New:"", NewComputed:true, NewRemoved:false, NewExtra:interface {}(nil), RequiresNew:false, Sensitive:false, Type:0x0}, "time_created":*terraform.ResourceAttrDiff{Old:"", New:"", NewComputed:true, NewRemoved:false, NewExtra:interface {}(nil), RequiresNew:false, Sensitive:false, Type:0x0}, "id":*terraform.ResourceAttrDiff{Old:"", New:"", NewComputed:true, NewRemoved:false, NewExtra:interface {}(nil), RequiresNew:true, Sensitive:false, Type:0x2}, "inactive_state":*terraform.ResourceAttrDiff{Old:"", New:"", NewComputed:true, NewRemoved:false, NewExtra:interface {}(nil), RequiresNew:false, Sensitive:false, Type:0x0}, "compartment_id":*terraform.ResourceAttrDiff{Old:"", New:"${oci_identity_compartment.demo_compartment.id}", NewComputed:true, NewRemoved:false, NewExtra:interface {}(nil), RequiresNew:true, Sensitive:false, Type:0x0}, "time_modified":*terraform.ResourceAttrDiff{Old:"", New:"", NewComputed:true, NewRemoved:false, NewExtra:interface {}(nil), RequiresNew:false, Sensitive:false, Type:0x0}}, Destroy:false, DestroyDeposed:false, DestroyTainted:false, Meta:map[string]interface {}(nil)}
2018/04/18 13:30:27 [TRACE] DiffTransformer: Resource "oci_identity_group.demo_group": *terraform.InstanceDiff{mu:sync.Mutex{state:0, sema:0x0}, Attributes:map[string]*terraform.ResourceAttrDiff{"compartment_id":*terraform.ResourceAttrDiff{Old:"", New:"${oci_identity_compartment.demo_compartment.id}", NewComputed:true, NewRemoved:false, NewExtra:interface {}(nil), RequiresNew:true, Sensitive:false, Type:0x0}, "description":*terraform.ResourceAttrDiff{Old:"", New:"Group who have access to Demo Compartment - NOT FOR PROD", NewComputed:false, NewRemoved:false, NewExtra:interface {}(nil), RequiresNew:false, Sensitive:false, Type:0x0}, "time_modified":*terraform.ResourceAttrDiff{Old:"", New:"", NewComputed:true, NewRemoved:false, NewExtra:interface {}(nil), RequiresNew:false, Sensitive:false, Type:0x0}, "name":*terraform.ResourceAttrDiff{Old:"", New:"Demo_Group", NewComputed:false, NewRemoved:false, NewExtra:interface {}(nil), RequiresNew:true, Sensitive:false, Type:0x0}, "id":*terraform.ResourceAttrDiff{Old:"", New:"", NewComputed:true, NewRemoved:false, NewExtra:interface {}(nil), RequiresNew:true, Sensitive:false, Type:0x2}, "inactive_state":*terraform.ResourceAttrDiff{Old:"", New:"", NewComputed:true, NewRemoved:false, NewExtra:interface {}(nil), RequiresNew:false, Sensitive:false, Type:0x0}, "state":*terraform.ResourceAttrDiff{Old:"", New:"", NewComputed:true, NewRemoved:false, NewExtra:interface {}(nil), RequiresNew:false, Sensitive:false, Type:0x0}, "time_created":*terraform.ResourceAttrDiff{Old:"", New:"", NewComputed:true, NewRemoved:false, NewExtra:interface {}(nil), RequiresNew:false, Sensitive:false, Type:0x0}}, Destroy:false, DestroyDeposed:false, DestroyTainted:false, Meta:map[string]interface {}(nil)}
2018/04/18 13:30:27 [TRACE] Graph after step *terraform.DiffTransformer:

oci_identity_compartment.demo_compartment - *terraform.NodeApplyableResource
oci_identity_group.demo_group - *terraform.NodeApplyableResource
oci_identity_policy.demo_policy - *terraform.NodeApplyableResource
2018/04/18 13:30:27 [TRACE] Graph after step *terraform.OrphanOutputTransformer:

oci_identity_compartment.demo_compartment - *terraform.NodeApplyableResource
oci_identity_group.demo_group - *terraform.NodeApplyableResource
oci_identity_policy.demo_policy - *terraform.NodeApplyableResource
2018/04/18 13:30:27 [TRACE] AttachResourceConfigTransformer: Beginning...
2018/04/18 13:30:27 [TRACE] AttachResourceConfigTransformer: Attach resource config request: oci_identity_compartment.demo_compartment
2018/04/18 13:30:27 [TRACE] Attaching resource config: &config.Resource{Mode:0, Name:"demo_compartment", Type:"oci_identity_compartment", RawCount:(*config.RawConfig)(0xc042120700), RawConfig:(*config.RawConfig)(0xc042120380), Provisioners:[]*config.Provisioner(nil), Provider:"", DependsOn:[]string(nil), Lifecycle:config.ResourceLifecycle{CreateBeforeDestroy:false, PreventDestroy:false, IgnoreChanges:[]string(nil)}}
2018/04/18 13:30:27 [TRACE] AttachResourceConfigTransformer: Attach resource config request: oci_identity_policy.demo_policy
2018/04/18 13:30:27 [TRACE] Attaching resource config: &config.Resource{Mode:0, Name:"demo_policy", Type:"oci_identity_policy", RawCount:(*config.RawConfig)(0xc042120a80), RawConfig:(*config.RawConfig)(0xc042120930), Provisioners:[]*config.Provisioner(nil), Provider:"", DependsOn:[]string(nil), Lifecycle:config.ResourceLifecycle{CreateBeforeDestroy:false, PreventDestroy:false, IgnoreChanges:[]string(nil)}}
2018/04/18 13:30:27 [TRACE] AttachResourceConfigTransformer: Attach resource config request: oci_identity_group.demo_group
2018/04/18 13:30:27 [TRACE] Attaching resource config: &config.Resource{Mode:0, Name:"demo_group", Type:"oci_identity_group", RawCount:(*config.RawConfig)(0xc0421208c0), RawConfig:(*config.RawConfig)(0xc042120770), Provisioners:[]*config.Provisioner(nil), Provider:"", DependsOn:[]string(nil), Lifecycle:config.ResourceLifecycle{CreateBeforeDestroy:false, PreventDestroy:false, IgnoreChanges:[]string(nil)}}
2018/04/18 13:30:27 [TRACE] Graph after step *terraform.AttachResourceConfigTransformer:

oci_identity_compartment.demo_compartment - *terraform.NodeApplyableResource
oci_identity_group.demo_group - *terraform.NodeApplyableResource
oci_identity_policy.demo_policy - *terraform.NodeApplyableResource
2018/04/18 13:30:27 [DEBUG] Resource state not found for "oci_identity_group.demo_group": oci_identity_group.demo_group
2018/04/18 13:30:27 [DEBUG] Resource state not found for "oci_identity_compartment.demo_compartment": oci_identity_compartment.demo_compartment
2018/04/18 13:30:27 [DEBUG] Resource state not found for "oci_identity_policy.demo_policy": oci_identity_policy.demo_policy
2018/04/18 13:30:27 [TRACE] Graph after step *terraform.AttachStateTransformer:

oci_identity_compartment.demo_compartment - *terraform.NodeApplyableResource
oci_identity_group.demo_group - *terraform.NodeApplyableResource
oci_identity_policy.demo_policy - *terraform.NodeApplyableResource
2018/04/18 13:30:27 [TRACE] ProviderConfigTransformer: Starting for path: []
2018/04/18 13:30:27 [TRACE] Attach provider request: []string{} oci
2018/04/18 13:30:27 [TRACE] Attaching provider config: *config.ProviderConfig{Name:"oci", Alias:"", Version:"", RawConfig:(*config.RawConfig)(0xc0424700e0)}
2018/04/18 13:30:27 [TRACE] Graph after step *terraform.ProviderConfigTransformer:

oci_identity_compartment.demo_compartment - *terraform.NodeApplyableResource
oci_identity_group.demo_group - *terraform.NodeApplyableResource
oci_identity_policy.demo_policy - *terraform.NodeApplyableResource
provider.oci - *terraform.NodeApplyableProvider
2018/04/18 13:30:27 [TRACE] Graph after step *terraform.MissingProviderTransformer:

oci_identity_compartment.demo_compartment - *terraform.NodeApplyableResource
oci_identity_group.demo_group - *terraform.NodeApplyableResource
oci_identity_policy.demo_policy - *terraform.NodeApplyableResource
provider.oci - *terraform.NodeApplyableProvider
2018/04/18 13:30:27 [DEBUG] resource oci_identity_compartment.demo_compartment using provider provider.oci
2018/04/18 13:30:27 [DEBUG] resource oci_identity_policy.demo_policy using provider provider.oci
2018/04/18 13:30:27 [DEBUG] resource oci_identity_group.demo_group using provider provider.oci
2018/04/18 13:30:27 [TRACE] Graph after step *terraform.ProviderTransformer:

oci_identity_compartment.demo_compartment - *terraform.NodeApplyableResource
provider.oci - *terraform.NodeApplyableProvider
oci_identity_group.demo_group - *terraform.NodeApplyableResource
provider.oci - *terraform.NodeApplyableProvider
oci_identity_policy.demo_policy - *terraform.NodeApplyableResource
provider.oci - *terraform.NodeApplyableProvider
provider.oci - *terraform.NodeApplyableProvider
2018/04/18 13:30:27 [TRACE] Graph after step *terraform.PruneProviderTransformer:

oci_identity_compartment.demo_compartment - *terraform.NodeApplyableResource
provider.oci - *terraform.NodeApplyableProvider
oci_identity_group.demo_group - *terraform.NodeApplyableResource
provider.oci - *terraform.NodeApplyableProvider
oci_identity_policy.demo_policy - *terraform.NodeApplyableResource
provider.oci - *terraform.NodeApplyableProvider
provider.oci - *terraform.NodeApplyableProvider
2018/04/18 13:30:27 [TRACE] Graph after step *terraform.ParentProviderTransformer:

oci_identity_compartment.demo_compartment - *terraform.NodeApplyableResource
provider.oci - *terraform.NodeApplyableProvider
oci_identity_group.demo_group - *terraform.NodeApplyableResource
provider.oci - *terraform.NodeApplyableProvider
oci_identity_policy.demo_policy - *terraform.NodeApplyableResource
provider.oci - *terraform.NodeApplyableProvider
provider.oci - *terraform.NodeApplyableProvider
2018/04/18 13:30:27 [TRACE] Graph after step *terraform.graphTransformerMulti:

oci_identity_compartment.demo_compartment - *terraform.NodeApplyableResource
provider.oci - *terraform.NodeApplyableProvider
oci_identity_group.demo_group - *terraform.NodeApplyableResource
provider.oci - *terraform.NodeApplyableProvider
oci_identity_policy.demo_policy - *terraform.NodeApplyableResource
provider.oci - *terraform.NodeApplyableProvider
provider.oci - *terraform.NodeApplyableProvider
2018/04/18 13:30:27 [TRACE] DestroyEdgeTransformer: Beginning destroy edge transformation...
2018/04/18 13:30:27 [TRACE] Graph after step *terraform.DestroyEdgeTransformer:

oci_identity_compartment.demo_compartment - *terraform.NodeApplyableResource
provider.oci - *terraform.NodeApplyableProvider
oci_identity_group.demo_group - *terraform.NodeApplyableResource
provider.oci - *terraform.NodeApplyableProvider
oci_identity_policy.demo_policy - *terraform.NodeApplyableResource
provider.oci - *terraform.NodeApplyableProvider
provider.oci - *terraform.NodeApplyableProvider
2018/04/18 13:30:27 [TRACE] CBDEdgeTransformer: Beginning CBD transformation...
2018/04/18 13:30:27 [TRACE] Graph after step *terraform.CBDEdgeTransformer:

oci_identity_compartment.demo_compartment - *terraform.NodeApplyableResource
provider.oci - *terraform.NodeApplyableProvider
oci_identity_group.demo_group - *terraform.NodeApplyableResource
provider.oci - *terraform.NodeApplyableProvider
oci_identity_policy.demo_policy - *terraform.NodeApplyableResource
provider.oci - *terraform.NodeApplyableProvider
provider.oci - *terraform.NodeApplyableProvider
2018/04/18 13:30:27 [TRACE] Graph after step *terraform.MissingProvisionerTransformer:

oci_identity_compartment.demo_compartment - *terraform.NodeApplyableResource
provider.oci - *terraform.NodeApplyableProvider
oci_identity_group.demo_group - *terraform.NodeApplyableResource
provider.oci - *terraform.NodeApplyableProvider
oci_identity_policy.demo_policy - *terraform.NodeApplyableResource
provider.oci - *terraform.NodeApplyableProvider
provider.oci - *terraform.NodeApplyableProvider
2018/04/18 13:30:27 [TRACE] Graph after step *terraform.ProvisionerTransformer:

oci_identity_compartment.demo_compartment - *terraform.NodeApplyableResource
provider.oci - *terraform.NodeApplyableProvider
oci_identity_group.demo_group - *terraform.NodeApplyableResource
provider.oci - *terraform.NodeApplyableProvider
oci_identity_policy.demo_policy - *terraform.NodeApplyableResource
provider.oci - *terraform.NodeApplyableProvider
provider.oci - *terraform.NodeApplyableProvider
2018/04/18 13:30:27 [TRACE] Graph after step *terraform.RootVariableTransformer:

oci_identity_compartment.demo_compartment - *terraform.NodeApplyableResource
provider.oci - *terraform.NodeApplyableProvider
oci_identity_group.demo_group - *terraform.NodeApplyableResource
provider.oci - *terraform.NodeApplyableProvider
oci_identity_policy.demo_policy - *terraform.NodeApplyableResource
provider.oci - *terraform.NodeApplyableProvider
provider.oci - *terraform.NodeApplyableProvider
var.ref_availability_domain - *terraform.NodeRootVariable
var.ref_comp_demo - *terraform.NodeRootVariable
var.ref_fingerprint - *terraform.NodeRootVariable
var.ref_group_demo - *terraform.NodeRootVariable
var.ref_policy_demo - *terraform.NodeRootVariable
var.ref_privatekeylocation - *terraform.NodeRootVariable
var.ref_region - *terraform.NodeRootVariable
var.ref_subnet__demo - *terraform.NodeRootVariable
var.ref_tenancy - *terraform.NodeRootVariable
var.ref_user - *terraform.NodeRootVariable
var.ref_vcn_cidr_block_demo - *terraform.NodeRootVariable
var.ref_vcn_demo - *terraform.NodeRootVariable
2018/04/18 13:30:27 [TRACE] Graph after step *terraform.LocalTransformer:

oci_identity_compartment.demo_compartment - *terraform.NodeApplyableResource
provider.oci - *terraform.NodeApplyableProvider
oci_identity_group.demo_group - *terraform.NodeApplyableResource
provider.oci - *terraform.NodeApplyableProvider
oci_identity_policy.demo_policy - *terraform.NodeApplyableResource
provider.oci - *terraform.NodeApplyableProvider
provider.oci - *terraform.NodeApplyableProvider
var.ref_availability_domain - *terraform.NodeRootVariable
var.ref_comp_demo - *terraform.NodeRootVariable
var.ref_fingerprint - *terraform.NodeRootVariable
var.ref_group_demo - *terraform.NodeRootVariable
var.ref_policy_demo - *terraform.NodeRootVariable
var.ref_privatekeylocation - *terraform.NodeRootVariable
var.ref_region - *terraform.NodeRootVariable
var.ref_subnet__demo - *terraform.NodeRootVariable
var.ref_tenancy - *terraform.NodeRootVariable
var.ref_user - *terraform.NodeRootVariable
var.ref_vcn_cidr_block_demo - *terraform.NodeRootVariable
var.ref_vcn_demo - *terraform.NodeRootVariable
2018/04/18 13:30:27 [TRACE] Graph after step *terraform.OutputTransformer:

oci_identity_compartment.demo_compartment - *terraform.NodeApplyableResource
provider.oci - *terraform.NodeApplyableProvider
oci_identity_group.demo_group - *terraform.NodeApplyableResource
provider.oci - *terraform.NodeApplyableProvider
oci_identity_policy.demo_policy - *terraform.NodeApplyableResource
provider.oci - *terraform.NodeApplyableProvider
provider.oci - *terraform.NodeApplyableProvider
var.ref_availability_domain - *terraform.NodeRootVariable
var.ref_comp_demo - *terraform.NodeRootVariable
var.ref_fingerprint - *terraform.NodeRootVariable
var.ref_group_demo - *terraform.NodeRootVariable
var.ref_policy_demo - *terraform.NodeRootVariable
var.ref_privatekeylocation - *terraform.NodeRootVariable
var.ref_region - *terraform.NodeRootVariable
var.ref_subnet__demo - *terraform.NodeRootVariable
var.ref_tenancy - *terraform.NodeRootVariable
var.ref_user - *terraform.NodeRootVariable
var.ref_vcn_cidr_block_demo - *terraform.NodeRootVariable
var.ref_vcn_demo - *terraform.NodeRootVariable
2018/04/18 13:30:27 [TRACE] Graph after step *terraform.ModuleVariableTransformer:

oci_identity_compartment.demo_compartment - *terraform.NodeApplyableResource
provider.oci - *terraform.NodeApplyableProvider
oci_identity_group.demo_group - *terraform.NodeApplyableResource
provider.oci - *terraform.NodeApplyableProvider
oci_identity_policy.demo_policy - *terraform.NodeApplyableResource
provider.oci - *terraform.NodeApplyableProvider
provider.oci - *terraform.NodeApplyableProvider
var.ref_availability_domain - *terraform.NodeRootVariable
var.ref_comp_demo - *terraform.NodeRootVariable
var.ref_fingerprint - *terraform.NodeRootVariable
var.ref_group_demo - *terraform.NodeRootVariable
var.ref_policy_demo - *terraform.NodeRootVariable
var.ref_privatekeylocation - *terraform.NodeRootVariable
var.ref_region - *terraform.NodeRootVariable
var.ref_subnet__demo - *terraform.NodeRootVariable
var.ref_tenancy - *terraform.NodeRootVariable
var.ref_user - *terraform.NodeRootVariable
var.ref_vcn_cidr_block_demo - *terraform.NodeRootVariable
var.ref_vcn_demo - *terraform.NodeRootVariable
2018/04/18 13:30:27 [TRACE] Graph after step *terraform.RemovedModuleTransformer:

oci_identity_compartment.demo_compartment - *terraform.NodeApplyableResource
provider.oci - *terraform.NodeApplyableProvider
oci_identity_group.demo_group - *terraform.NodeApplyableResource
provider.oci - *terraform.NodeApplyableProvider
oci_identity_policy.demo_policy - *terraform.NodeApplyableResource
provider.oci - *terraform.NodeApplyableProvider
provider.oci - *terraform.NodeApplyableProvider
var.ref_availability_domain - *terraform.NodeRootVariable
var.ref_comp_demo - *terraform.NodeRootVariable
var.ref_fingerprint - *terraform.NodeRootVariable
var.ref_group_demo - *terraform.NodeRootVariable
var.ref_policy_demo - *terraform.NodeRootVariable
var.ref_privatekeylocation - *terraform.NodeRootVariable
var.ref_region - *terraform.NodeRootVariable
var.ref_subnet__demo - *terraform.NodeRootVariable
var.ref_tenancy - *terraform.NodeRootVariable
var.ref_user - *terraform.NodeRootVariable
var.ref_vcn_cidr_block_demo - *terraform.NodeRootVariable
var.ref_vcn_demo - *terraform.NodeRootVariable
2018/04/18 13:30:27 [DEBUG] ReferenceTransformer: "oci_identity_group.demo_group" references: [oci_identity_compartment.demo_compartment var.ref_group_demo oci_identity_compartment.demo_compartment]
2018/04/18 13:30:27 [DEBUG] ReferenceTransformer: "var.ref_user" references: []
2018/04/18 13:30:27 [DEBUG] ReferenceTransformer: "var.ref_privatekeylocation" references: []
2018/04/18 13:30:27 [DEBUG] ReferenceTransformer: "var.ref_comp_demo" references: []
2018/04/18 13:30:27 [DEBUG] ReferenceTransformer: "var.ref_vcn_demo" references: []
2018/04/18 13:30:27 [DEBUG] ReferenceTransformer: "oci_identity_policy.demo_policy" references: [oci_identity_compartment.demo_compartment var.ref_policy_demo oci_identity_compartment.demo_compartment]
2018/04/18 13:30:27 [DEBUG] ReferenceTransformer: "var.ref_fingerprint" references: []
2018/04/18 13:30:27 [DEBUG] ReferenceTransformer: "var.ref_group_demo" references: []
2018/04/18 13:30:27 [DEBUG] ReferenceTransformer: "var.ref_vcn_cidr_block_demo" references: []
2018/04/18 13:30:27 [DEBUG] ReferenceTransformer: "var.ref_tenancy" references: []
2018/04/18 13:30:27 [DEBUG] ReferenceTransformer: "var.ref_policy_demo" references: []
2018/04/18 13:30:27 [DEBUG] ReferenceTransformer: "var.ref_subnet__demo" references: []
2018/04/18 13:30:27 [DEBUG] ReferenceTransformer: "oci_identity_compartment.demo_compartment" references: [var.ref_comp_demo var.ref_tenancy]
2018/04/18 13:30:27 [DEBUG] ReferenceTransformer: "provider.oci" references: [var.ref_tenancy var.ref_user var.ref_fingerprint var.ref_privatekeylocation var.ref_region]
2018/04/18 13:30:27 [DEBUG] ReferenceTransformer: "var.ref_region" references: []
2018/04/18 13:30:27 [DEBUG] ReferenceTransformer: "var.ref_availability_domain" references: []
2018/04/18 13:30:27 [TRACE] Graph after step *terraform.ReferenceTransformer:

oci_identity_compartment.demo_compartment - *terraform.NodeApplyableResource
provider.oci - *terraform.NodeApplyableProvider
var.ref_comp_demo - *terraform.NodeRootVariable
var.ref_tenancy - *terraform.NodeRootVariable
oci_identity_group.demo_group - *terraform.NodeApplyableResource
oci_identity_compartment.demo_compartment - *terraform.NodeApplyableResource
provider.oci - *terraform.NodeApplyableProvider
var.ref_group_demo - *terraform.NodeRootVariable
oci_identity_policy.demo_policy - *terraform.NodeApplyableResource
oci_identity_compartment.demo_compartment - *terraform.NodeApplyableResource
provider.oci - *terraform.NodeApplyableProvider
var.ref_policy_demo - *terraform.NodeRootVariable
provider.oci - *terraform.NodeApplyableProvider
var.ref_fingerprint - *terraform.NodeRootVariable
var.ref_privatekeylocation - *terraform.NodeRootVariable
var.ref_region - *terraform.NodeRootVariable
var.ref_tenancy - *terraform.NodeRootVariable
var.ref_user - *terraform.NodeRootVariable
var.ref_availability_domain - *terraform.NodeRootVariable
var.ref_comp_demo - *terraform.NodeRootVariable
var.ref_fingerprint - *terraform.NodeRootVariable
var.ref_group_demo - *terraform.NodeRootVariable
var.ref_policy_demo - *terraform.NodeRootVariable
var.ref_privatekeylocation - *terraform.NodeRootVariable
var.ref_region - *terraform.NodeRootVariable
var.ref_subnet__demo - *terraform.NodeRootVariable
var.ref_tenancy - *terraform.NodeRootVariable
var.ref_user - *terraform.NodeRootVariable
var.ref_vcn_cidr_block_demo - *terraform.NodeRootVariable
var.ref_vcn_demo - *terraform.NodeRootVariable
2018/04/18 13:30:27 [TRACE] Graph after step *terraform.CountBoundaryTransformer:

meta.count-boundary (count boundary fixup) - *terraform.NodeCountBoundary
oci_identity_compartment.demo_compartment - *terraform.NodeApplyableResource
oci_identity_group.demo_group - *terraform.NodeApplyableResource
oci_identity_policy.demo_policy - *terraform.NodeApplyableResource
provider.oci - *terraform.NodeApplyableProvider
var.ref_availability_domain - *terraform.NodeRootVariable
var.ref_comp_demo - *terraform.NodeRootVariable
var.ref_fingerprint - *terraform.NodeRootVariable
var.ref_group_demo - *terraform.NodeRootVariable
var.ref_policy_demo - *terraform.NodeRootVariable
var.ref_privatekeylocation - *terraform.NodeRootVariable
var.ref_region - *terraform.NodeRootVariable
var.ref_subnet__demo - *terraform.NodeRootVariable
var.ref_tenancy - *terraform.NodeRootVariable
var.ref_user - *terraform.NodeRootVariable
var.ref_vcn_cidr_block_demo - *terraform.NodeRootVariable
var.ref_vcn_demo - *terraform.NodeRootVariable
oci_identity_compartment.demo_compartment - *terraform.NodeApplyableResource
provider.oci - *terraform.NodeApplyableProvider
var.ref_comp_demo - *terraform.NodeRootVariable
var.ref_tenancy - *terraform.NodeRootVariable
oci_identity_group.demo_group - *terraform.NodeApplyableResource
oci_identity_compartment.demo_compartment - *terraform.NodeApplyableResource
provider.oci - *terraform.NodeApplyableProvider
var.ref_group_demo - *terraform.NodeRootVariable
oci_identity_policy.demo_policy - *terraform.NodeApplyableResource
oci_identity_compartment.demo_compartment - *terraform.NodeApplyableResource
provider.oci - *terraform.NodeApplyableProvider
var.ref_policy_demo - *terraform.NodeRootVariable
provider.oci - *terraform.NodeApplyableProvider
var.ref_fingerprint - *terraform.NodeRootVariable
var.ref_privatekeylocation - *terraform.NodeRootVariable
var.ref_region - *terraform.NodeRootVariable
var.ref_tenancy - *terraform.NodeRootVariable
var.ref_user - *terraform.NodeRootVariable
var.ref_availability_domain - *terraform.NodeRootVariable
var.ref_comp_demo - *terraform.NodeRootVariable
var.ref_fingerprint - *terraform.NodeRootVariable
var.ref_group_demo - *terraform.NodeRootVariable
var.ref_policy_demo - *terraform.NodeRootVariable
var.ref_privatekeylocation - *terraform.NodeRootVariable
var.ref_region - *terraform.NodeRootVariable
var.ref_subnet__demo - *terraform.NodeRootVariable
var.ref_tenancy - *terraform.NodeRootVariable
var.ref_user - *terraform.NodeRootVariable
var.ref_vcn_cidr_block_demo - *terraform.NodeRootVariable
var.ref_vcn_demo - *terraform.NodeRootVariable
2018/04/18 13:30:27 [TRACE] Graph after step *terraform.TargetsTransformer:

meta.count-boundary (count boundary fixup) - *terraform.NodeCountBoundary
oci_identity_compartment.demo_compartment - *terraform.NodeApplyableResource
oci_identity_group.demo_group - *terraform.NodeApplyableResource
oci_identity_policy.demo_policy - *terraform.NodeApplyableResource
provider.oci - *terraform.NodeApplyableProvider
var.ref_availability_domain - *terraform.NodeRootVariable
var.ref_comp_demo - *terraform.NodeRootVariable
var.ref_fingerprint - *terraform.NodeRootVariable
var.ref_group_demo - *terraform.NodeRootVariable
var.ref_policy_demo - *terraform.NodeRootVariable
var.ref_privatekeylocation - *terraform.NodeRootVariable
var.ref_region - *terraform.NodeRootVariable
var.ref_subnet__demo - *terraform.NodeRootVariable
var.ref_tenancy - *terraform.NodeRootVariable
var.ref_user - *terraform.NodeRootVariable
var.ref_vcn_cidr_block_demo - *terraform.NodeRootVariable
var.ref_vcn_demo - *terraform.NodeRootVariable
oci_identity_compartment.demo_compartment - *terraform.NodeApplyableResource
provider.oci - *terraform.NodeApplyableProvider
var.ref_comp_demo - *terraform.NodeRootVariable
var.ref_tenancy - *terraform.NodeRootVariable
oci_identity_group.demo_group - *terraform.NodeApplyableResource
oci_identity_compartment.demo_compartment - *terraform.NodeApplyableResource
provider.oci - *terraform.NodeApplyableProvider
var.ref_group_demo - *terraform.NodeRootVariable
oci_identity_policy.demo_policy - *terraform.NodeApplyableResource
oci_identity_compartment.demo_compartment - *terraform.NodeApplyableResource
provider.oci - *terraform.NodeApplyableProvider
var.ref_policy_demo - *terraform.NodeRootVariable
provider.oci - *terraform.NodeApplyableProvider
var.ref_fingerprint - *terraform.NodeRootVariable
var.ref_privatekeylocation - *terraform.NodeRootVariable
var.ref_region - *terraform.NodeRootVariable
var.ref_tenancy - *terraform.NodeRootVariable
var.ref_user - *terraform.NodeRootVariable
var.ref_availability_domain - *terraform.NodeRootVariable
var.ref_comp_demo - *terraform.NodeRootVariable
var.ref_fingerprint - *terraform.NodeRootVariable
var.ref_group_demo - *terraform.NodeRootVariable
var.ref_policy_demo - *terraform.NodeRootVariable
var.ref_privatekeylocation - *terraform.NodeRootVariable
var.ref_region - *terraform.NodeRootVariable
var.ref_subnet__demo - *terraform.NodeRootVariable
var.ref_tenancy - *terraform.NodeRootVariable
var.ref_user - *terraform.NodeRootVariable
var.ref_vcn_cidr_block_demo - *terraform.NodeRootVariable
var.ref_vcn_demo - *terraform.NodeRootVariable
2018/04/18 13:30:27 [TRACE] Graph after step *terraform.CloseProviderTransformer:

meta.count-boundary (count boundary fixup) - *terraform.NodeCountBoundary
oci_identity_compartment.demo_compartment - *terraform.NodeApplyableResource
oci_identity_group.demo_group - *terraform.NodeApplyableResource
oci_identity_policy.demo_policy - *terraform.NodeApplyableResource
provider.oci - *terraform.NodeApplyableProvider
var.ref_availability_domain - *terraform.NodeRootVariable
var.ref_comp_demo - *terraform.NodeRootVariable
var.ref_fingerprint - *terraform.NodeRootVariable
var.ref_group_demo - *terraform.NodeRootVariable
var.ref_policy_demo - *terraform.NodeRootVariable
var.ref_privatekeylocation - *terraform.NodeRootVariable
var.ref_region - *terraform.NodeRootVariable
var.ref_subnet__demo - *terraform.NodeRootVariable
var.ref_tenancy - *terraform.NodeRootVariable
var.ref_user - *terraform.NodeRootVariable
var.ref_vcn_cidr_block_demo - *terraform.NodeRootVariable
var.ref_vcn_demo - *terraform.NodeRootVariable
oci_identity_compartment.demo_compartment - *terraform.NodeApplyableResource
provider.oci - *terraform.NodeApplyableProvider
var.ref_comp_demo - *terraform.NodeRootVariable
var.ref_tenancy - *terraform.NodeRootVariable
oci_identity_group.demo_group - *terraform.NodeApplyableResource
oci_identity_compartment.demo_compartment - *terraform.NodeApplyableResource
provider.oci - *terraform.NodeApplyableProvider
var.ref_group_demo - *terraform.NodeRootVariable
oci_identity_policy.demo_policy - *terraform.NodeApplyableResource
oci_identity_compartment.demo_compartment - *terraform.NodeApplyableResource
provider.oci - *terraform.NodeApplyableProvider
var.ref_policy_demo - *terraform.NodeRootVariable
provider.oci - *terraform.NodeApplyableProvider
var.ref_fingerprint - *terraform.NodeRootVariable
var.ref_privatekeylocation - *terraform.NodeRootVariable
var.ref_region - *terraform.NodeRootVariable
var.ref_tenancy - *terraform.NodeRootVariable
var.ref_user - *terraform.NodeRootVariable
provider.oci (close) - *terraform.graphNodeCloseProvider
oci_identity_compartment.demo_compartment - *terraform.NodeApplyableResource
oci_identity_group.demo_group - *terraform.NodeApplyableResource
oci_identity_policy.demo_policy - *terraform.NodeApplyableResource
provider.oci - *terraform.NodeApplyableProvider
var.ref_availability_domain - *terraform.NodeRootVariable
var.ref_comp_demo - *terraform.NodeRootVariable
var.ref_fingerprint - *terraform.NodeRootVariable
var.ref_group_demo - *terraform.NodeRootVariable
var.ref_policy_demo - *terraform.NodeRootVariable
var.ref_privatekeylocation - *terraform.NodeRootVariable
var.ref_region - *terraform.NodeRootVariable
var.ref_subnet__demo - *terraform.NodeRootVariable
var.ref_tenancy - *terraform.NodeRootVariable
var.ref_user - *terraform.NodeRootVariable
var.ref_vcn_cidr_block_demo - *terraform.NodeRootVariable
var.ref_vcn_demo - *terraform.NodeRootVariable
2018/04/18 13:30:27 [TRACE] Graph after step *terraform.CloseProvisionerTransformer:

meta.count-boundary (count boundary fixup) - *terraform.NodeCountBoundary
oci_identity_compartment.demo_compartment - *terraform.NodeApplyableResource
oci_identity_group.demo_group - *terraform.NodeApplyableResource
oci_identity_policy.demo_policy - *terraform.NodeApplyableResource
provider.oci - *terraform.NodeApplyableProvider
var.ref_availability_domain - *terraform.NodeRootVariable
var.ref_comp_demo - *terraform.NodeRootVariable
var.ref_fingerprint - *terraform.NodeRootVariable
var.ref_group_demo - *terraform.NodeRootVariable
var.ref_policy_demo - *terraform.NodeRootVariable
var.ref_privatekeylocation - *terraform.NodeRootVariable
var.ref_region - *terraform.NodeRootVariable
var.ref_subnet__demo - *terraform.NodeRootVariable
var.ref_tenancy - *terraform.NodeRootVariable
var.ref_user - *terraform.NodeRootVariable
var.ref_vcn_cidr_block_demo - *terraform.NodeRootVariable
var.ref_vcn_demo - *terraform.NodeRootVariable
oci_identity_compartment.demo_compartment - *terraform.NodeApplyableResource
provider.oci - *terraform.NodeApplyableProvider
var.ref_comp_demo - *terraform.NodeRootVariable
var.ref_tenancy - *terraform.NodeRootVariable
oci_identity_group.demo_group - *terraform.NodeApplyableResource
oci_identity_compartment.demo_compartment - *terraform.NodeApplyableResource
provider.oci - *terraform.NodeApplyableProvider
var.ref_group_demo - *terraform.NodeRootVariable
oci_identity_policy.demo_policy - *terraform.NodeApplyableResource
oci_identity_compartment.demo_compartment - *terraform.NodeApplyableResource
provider.oci - *terraform.NodeApplyableProvider
var.ref_policy_demo - *terraform.NodeRootVariable
provider.oci - *terraform.NodeApplyableProvider
var.ref_fingerprint - *terraform.NodeRootVariable
var.ref_privatekeylocation - *terraform.NodeRootVariable
var.ref_region - *terraform.NodeRootVariable
var.ref_tenancy - *terraform.NodeRootVariable
var.ref_user - *terraform.NodeRootVariable
provider.oci (close) - *terraform.graphNodeCloseProvider
oci_identity_compartment.demo_compartment - *terraform.NodeApplyableResource
oci_identity_group.demo_group - *terraform.NodeApplyableResource
oci_identity_policy.demo_policy - *terraform.NodeApplyableResource
provider.oci - *terraform.NodeApplyableProvider
var.ref_availability_domain - *terraform.NodeRootVariable
var.ref_comp_demo - *terraform.NodeRootVariable
var.ref_fingerprint - *terraform.NodeRootVariable
var.ref_group_demo - *terraform.NodeRootVariable
var.ref_policy_demo - *terraform.NodeRootVariable
var.ref_privatekeylocation - *terraform.NodeRootVariable
var.ref_region - *terraform.NodeRootVariable
var.ref_subnet__demo - *terraform.NodeRootVariable
var.ref_tenancy - *terraform.NodeRootVariable
var.ref_user - *terraform.NodeRootVariable
var.ref_vcn_cidr_block_demo - *terraform.NodeRootVariable
var.ref_vcn_demo - *terraform.NodeRootVariable
2018/04/18 13:30:27 [TRACE] Graph after step *terraform.RootTransformer:

meta.count-boundary (count boundary fixup) - *terraform.NodeCountBoundary
oci_identity_compartment.demo_compartment - *terraform.NodeApplyableResource
oci_identity_group.demo_group - *terraform.NodeApplyableResource
oci_identity_policy.demo_policy - *terraform.NodeApplyableResource
provider.oci - *terraform.NodeApplyableProvider
var.ref_availability_domain - *terraform.NodeRootVariable
var.ref_comp_demo - *terraform.NodeRootVariable
var.ref_fingerprint - *terraform.NodeRootVariable
var.ref_group_demo - *terraform.NodeRootVariable
var.ref_policy_demo - *terraform.NodeRootVariable
var.ref_privatekeylocation - *terraform.NodeRootVariable
var.ref_region - *terraform.NodeRootVariable
var.ref_subnet__demo - *terraform.NodeRootVariable
var.ref_tenancy - *terraform.NodeRootVariable
var.ref_user - *terraform.NodeRootVariable
var.ref_vcn_cidr_block_demo - *terraform.NodeRootVariable
var.ref_vcn_demo - *terraform.NodeRootVariable
oci_identity_compartment.demo_compartment - *terraform.NodeApplyableResource
provider.oci - *terraform.NodeApplyableProvider
var.ref_comp_demo - *terraform.NodeRootVariable
var.ref_tenancy - *terraform.NodeRootVariable
oci_identity_group.demo_group - *terraform.NodeApplyableResource
oci_identity_compartment.demo_compartment - *terraform.NodeApplyableResource
provider.oci - *terraform.NodeApplyableProvider
var.ref_group_demo - *terraform.NodeRootVariable
oci_identity_policy.demo_policy - *terraform.NodeApplyableResource
oci_identity_compartment.demo_compartment - *terraform.NodeApplyableResource
provider.oci - *terraform.NodeApplyableProvider
var.ref_policy_demo - *terraform.NodeRootVariable
provider.oci - *terraform.NodeApplyableProvider
var.ref_fingerprint - *terraform.NodeRootVariable
var.ref_privatekeylocation - *terraform.NodeRootVariable
var.ref_region - *terraform.NodeRootVariable
var.ref_tenancy - *terraform.NodeRootVariable
var.ref_user - *terraform.NodeRootVariable
provider.oci (close) - *terraform.graphNodeCloseProvider
oci_identity_compartment.demo_compartment - *terraform.NodeApplyableResource
oci_identity_group.demo_group - *terraform.NodeApplyableResource
oci_identity_policy.demo_policy - *terraform.NodeApplyableResource
provider.oci - *terraform.NodeApplyableProvider
root - terraform.graphNodeRoot
meta.count-boundary (count boundary fixup) - *terraform.NodeCountBoundary
provider.oci (close) - *terraform.graphNodeCloseProvider
var.ref_availability_domain - *terraform.NodeRootVariable
var.ref_comp_demo - *terraform.NodeRootVariable
var.ref_fingerprint - *terraform.NodeRootVariable
var.ref_group_demo - *terraform.NodeRootVariable
var.ref_policy_demo - *terraform.NodeRootVariable
var.ref_privatekeylocation - *terraform.NodeRootVariable
var.ref_region - *terraform.NodeRootVariable
var.ref_subnet__demo - *terraform.NodeRootVariable
var.ref_tenancy - *terraform.NodeRootVariable
var.ref_user - *terraform.NodeRootVariable
var.ref_vcn_cidr_block_demo - *terraform.NodeRootVariable
var.ref_vcn_demo - *terraform.NodeRootVariable
2018/04/18 13:30:27 [TRACE] Graph after step *terraform.TransitiveReductionTransformer:

meta.count-boundary (count boundary fixup) - *terraform.NodeCountBoundary
oci_identity_group.demo_group - *terraform.NodeApplyableResource
oci_identity_policy.demo_policy - *terraform.NodeApplyableResource
var.ref_availability_domain - *terraform.NodeRootVariable
var.ref_subnet__demo - *terraform.NodeRootVariable
var.ref_vcn_cidr_block_demo - *terraform.NodeRootVariable
var.ref_vcn_demo - *terraform.NodeRootVariable
oci_identity_compartment.demo_compartment - *terraform.NodeApplyableResource
provider.oci - *terraform.NodeApplyableProvider
var.ref_comp_demo - *terraform.NodeRootVariable
oci_identity_group.demo_group - *terraform.NodeApplyableResource
oci_identity_compartment.demo_compartment - *terraform.NodeApplyableResource
var.ref_group_demo - *terraform.NodeRootVariable
oci_identity_policy.demo_policy - *terraform.NodeApplyableResource
oci_identity_compartment.demo_compartment - *terraform.NodeApplyableResource
var.ref_policy_demo - *terraform.NodeRootVariable
provider.oci - *terraform.NodeApplyableProvider
var.ref_fingerprint - *terraform.NodeRootVariable
var.ref_privatekeylocation - *terraform.NodeRootVariable
var.ref_region - *terraform.NodeRootVariable
var.ref_tenancy - *terraform.NodeRootVariable
var.ref_user - *terraform.NodeRootVariable
provider.oci (close) - *terraform.graphNodeCloseProvider
oci_identity_group.demo_group - *terraform.NodeApplyableResource
oci_identity_policy.demo_policy - *terraform.NodeApplyableResource
root - terraform.graphNodeRoot
meta.count-boundary (count boundary fixup) - *terraform.NodeCountBoundary
provider.oci (close) - *terraform.graphNodeCloseProvider
var.ref_availability_domain - *terraform.NodeRootVariable
var.ref_comp_demo - *terraform.NodeRootVariable
var.ref_fingerprint - *terraform.NodeRootVariable
var.ref_group_demo - *terraform.NodeRootVariable
var.ref_policy_demo - *terraform.NodeRootVariable
var.ref_privatekeylocation - *terraform.NodeRootVariable
var.ref_region - *terraform.NodeRootVariable
var.ref_subnet__demo - *terraform.NodeRootVariable
var.ref_tenancy - *terraform.NodeRootVariable
var.ref_user - *terraform.NodeRootVariable
var.ref_vcn_cidr_block_demo - *terraform.NodeRootVariable
var.ref_vcn_demo - *terraform.NodeRootVariable
2018/04/18 13:30:27 [DEBUG] Starting graph walk: walkApply
2018/04/18 13:30:27 [TRACE] dag/walk: added new vertex: "meta.count-boundary (count boundary fixup)"
2018/04/18 13:30:27 [TRACE] dag/walk: added new vertex: "var.ref_policy_demo"
2018/04/18 13:30:27 [TRACE] dag/walk: added new vertex: "var.ref_availability_domain"
2018/04/18 13:30:27 [TRACE] dag/walk: added new vertex: "provider.oci"
2018/04/18 13:30:27 [TRACE] dag/walk: added new vertex: "var.ref_comp_demo"
2018/04/18 13:30:27 [TRACE] dag/walk: added new vertex: "var.ref_vcn_cidr_block_demo"
2018/04/18 13:30:27 [TRACE] dag/walk: added new vertex: "oci_identity_group.demo_group"
2018/04/18 13:30:27 [TRACE] dag/walk: added new vertex: "provider.oci (close)"
2018/04/18 13:30:27 [TRACE] dag/walk: added new vertex: "var.ref_fingerprint"
2018/04/18 13:30:27 [TRACE] dag/walk: added new vertex: "var.ref_group_demo"
2018/04/18 13:30:27 [TRACE] dag/walk: added new vertex: "var.ref_tenancy"
2018/04/18 13:30:27 [TRACE] dag/walk: added new vertex: "var.ref_region"
2018/04/18 13:30:27 [TRACE] dag/walk: added new vertex: "var.ref_vcn_demo"
2018/04/18 13:30:27 [TRACE] dag/walk: added new vertex: "oci_identity_policy.demo_policy"
2018/04/18 13:30:27 [TRACE] dag/walk: added new vertex: "oci_identity_compartment.demo_compartment"
2018/04/18 13:30:27 [TRACE] dag/walk: added new vertex: "root"
2018/04/18 13:30:27 [TRACE] dag/walk: added new vertex: "var.ref_user"
2018/04/18 13:30:27 [TRACE] dag/walk: added new vertex: "var.ref_privatekeylocation"
2018/04/18 13:30:27 [TRACE] dag/walk: added new vertex: "var.ref_subnet__demo"
2018/04/18 13:30:27 [TRACE] dag/walk: added edge: "root" waiting on "provider.oci (close)"
2018/04/18 13:30:27 [TRACE] dag/walk: added edge: "provider.oci (close)" waiting on "oci_identity_policy.demo_policy"
2018/04/18 13:30:27 [TRACE] dag/walk: added edge: "provider.oci (close)" waiting on "oci_identity_group.demo_group"
2018/04/18 13:30:27 [TRACE] dag/walk: added edge: "oci_identity_policy.demo_policy" waiting on "oci_identity_compartment.demo_compartment"
2018/04/18 13:30:27 [TRACE] dag/walk: added edge: "oci_identity_group.demo_group" waiting on "oci_identity_compartment.demo_compartment"
2018/04/18 13:30:27 [TRACE] dag/walk: added edge: "oci_identity_policy.demo_policy" waiting on "var.ref_policy_demo"
2018/04/18 13:30:27 [TRACE] dag/walk: added edge: "meta.count-boundary (count boundary fixup)" waiting on "oci_identity_policy.demo_policy"
2018/04/18 13:30:27 [TRACE] dag/walk: added edge: "root" waiting on "meta.count-boundary (count boundary fixup)"
2018/04/18 13:30:27 [TRACE] dag/walk: added edge: "provider.oci" waiting on "var.ref_privatekeylocation"
2018/04/18 13:30:27 [TRACE] dag/walk: added edge: "provider.oci" waiting on "var.ref_user"
2018/04/18 13:30:27 [TRACE] dag/walk: added edge: "oci_identity_compartment.demo_compartment" waiting on "provider.oci"
2018/04/18 13:30:27 [TRACE] dag/walk: added edge: "oci_identity_group.demo_group" waiting on "var.ref_group_demo"
2018/04/18 13:30:27 [TRACE] dag/walk: added edge: "provider.oci" waiting on "var.ref_tenancy"
2018/04/18 13:30:27 [TRACE] dag/walk: added edge: "meta.count-boundary (count boundary fixup)" waiting on "oci_identity_group.demo_group"
2018/04/18 13:30:27 [TRACE] dag/walk: added edge: "meta.count-boundary (count boundary fixup)" waiting on "var.ref_availability_domain"
2018/04/18 13:30:27 [TRACE] dag/walk: added edge: "meta.count-boundary (count boundary fixup)" waiting on "var.ref_vcn_demo"
2018/04/18 13:30:27 [TRACE] dag/walk: added edge: "meta.count-boundary (count boundary fixup)" waiting on "var.ref_subnet__demo"
2018/04/18 13:30:27 [TRACE] dag/walk: added edge: "oci_identity_compartment.demo_compartment" waiting on "var.ref_comp_demo"
2018/04/18 13:30:27 [TRACE] dag/walk: added edge: "provider.oci" waiting on "var.ref_region"
2018/04/18 13:30:27 [TRACE] dag/walk: added edge: "meta.count-boundary (count boundary fixup)" waiting on "var.ref_vcn_cidr_block_demo"
2018/04/18 13:30:27 [TRACE] dag/walk: added edge: "provider.oci" waiting on "var.ref_fingerprint"
2018/04/18 13:30:27 [TRACE] dag/walk: dependencies changed for "oci_identity_policy.demo_policy", sending new deps
2018/04/18 13:30:27 [TRACE] dag/walk: dependencies changed for "oci_identity_group.demo_group", sending new deps
2018/04/18 13:30:27 [TRACE] dag/walk: dependencies changed for "meta.count-boundary (count boundary fixup)", sending new deps
2018/04/18 13:30:27 [TRACE] dag/walk: dependencies changed for "provider.oci", sending new deps
2018/04/18 13:30:27 [TRACE] dag/walk: dependencies changed for "oci_identity_compartment.demo_compartment", sending new deps
2018/04/18 13:30:27 [TRACE] dag/walk: dependencies changed for "root", sending new deps
2018/04/18 13:30:27 [TRACE] dag/walk: dependencies changed for "provider.oci (close)", sending new deps
2018/04/18 13:30:27 [TRACE] dag/walk: walking "var.ref_comp_demo"
2018/04/18 13:30:27 [TRACE] vertex 'root.var.ref_comp_demo': walking
2018/04/18 13:30:27 [TRACE] dag/walk: walking "var.ref_tenancy"
2018/04/18 13:30:27 [TRACE] vertex 'root.var.ref_tenancy': walking
2018/04/18 13:30:27 [TRACE] dag/walk: walking "var.ref_fingerprint"
2018/04/18 13:30:27 [TRACE] dag/walk: walking "var.ref_subnet__demo"
2018/04/18 13:30:27 [TRACE] vertex 'root.var.ref_subnet__demo': walking
2018/04/18 13:30:27 [TRACE] dag/walk: walking "var.ref_group_demo"
2018/04/18 13:30:27 [TRACE] vertex 'root.var.ref_group_demo': walking
2018/04/18 13:30:27 [TRACE] vertex 'root.var.ref_fingerprint': walking
2018/04/18 13:30:27 [TRACE] dag/walk: walking "var.ref_user"
2018/04/18 13:30:27 [TRACE] vertex 'root.var.ref_user': walking
2018/04/18 13:30:27 [TRACE] dag/walk: walking "var.ref_vcn_demo"
2018/04/18 13:30:27 [TRACE] vertex 'root.var.ref_vcn_demo': walking
2018/04/18 13:30:27 [TRACE] dag/walk: walking "var.ref_region"
2018/04/18 13:30:27 [TRACE] vertex 'root.var.ref_region': walking
2018/04/18 13:30:27 [TRACE] dag/walk: walking "var.ref_privatekeylocation"
2018/04/18 13:30:27 [TRACE] vertex 'root.var.ref_privatekeylocation': walking
2018/04/18 13:30:27 [TRACE] dag/walk: walking "var.ref_vcn_cidr_block_demo"
2018/04/18 13:30:27 [TRACE] vertex 'root.var.ref_vcn_cidr_block_demo': walking
2018/04/18 13:30:27 [TRACE] dag/walk: walking "var.ref_policy_demo"
2018/04/18 13:30:27 [TRACE] vertex 'root.var.ref_policy_demo': walking
2018/04/18 13:30:27 [TRACE] dag/walk: walking "var.ref_availability_domain"
2018/04/18 13:30:27 [TRACE] vertex 'root.var.ref_availability_domain': walking
2018/04/18 13:30:27 [TRACE] dag/walk: walking "provider.oci"
2018/04/18 13:30:27 [TRACE] vertex 'root.provider.oci': walking
2018/04/18 13:30:27 [TRACE] vertex 'root.provider.oci': evaluating
2018/04/18 13:30:27 [TRACE] [walkApply] Entering eval tree: provider.oci
2018/04/18 13:30:27 [TRACE] root: eval: *terraform.EvalSequence
2018/04/18 13:30:27 [TRACE] root: eval: *terraform.EvalInitProvider
2018/04/18 13:30:27 [TRACE] root: eval: terraform.EvalNoop
2018/04/18 13:30:27 [TRACE] root: eval: terraform.EvalNoop
2018/04/18 13:30:27 [TRACE] root: eval: *terraform.EvalOpFilter
2018/04/18 13:30:27 [TRACE] root: eval: *terraform.EvalSequence
2018/04/18 13:30:27 [TRACE] root: eval: *terraform.EvalGetProvider
2018/04/18 13:30:27 [TRACE] root: eval: *terraform.EvalInterpolateProvider
2018/04/18 13:30:27 [TRACE] root: eval: *terraform.EvalBuildProviderConfig
2018/04/18 13:30:27 [TRACE] root: eval: *terraform.EvalOpFilter
2018/04/18 13:30:27 [TRACE] root: eval: *terraform.EvalSequence
2018/04/18 13:30:27 [TRACE] root: eval: *terraform.EvalConfigProvider
2018/04/18 13:30:27 [TRACE] [walkApply] Exiting eval tree: provider.oci
2018/04/18 13:30:27 [TRACE] dag/walk: walking "oci_identity_compartment.demo_compartment"
2018/04/18 13:30:27 [TRACE] vertex 'root.oci_identity_compartment.demo_compartment': walking
2018/04/18 13:30:27 [TRACE] vertex 'root.oci_identity_compartment.demo_compartment': evaluating
2018/04/18 13:30:27 [TRACE] [walkApply] Entering eval tree: oci_identity_compartment.demo_compartment
2018/04/18 13:30:27 [TRACE] root: eval: *terraform.EvalSequence
2018/04/18 13:30:27 [TRACE] root: eval: *terraform.EvalInstanceInfo
2018/04/18 13:30:27 [TRACE] root: eval: *terraform.EvalReadDiff
2018/04/18 13:30:27 [TRACE] root: eval: *terraform.EvalIf
2018/04/18 13:30:27 [TRACE] root: eval: terraform.EvalNoop
2018/04/18 13:30:27 [TRACE] root: eval: *terraform.EvalIf
2018/04/18 13:30:27 [TRACE] root: eval: *terraform.EvalInterpolate
2018/04/18 13:30:27 [TRACE] root: eval: *terraform.EvalInterpolate
2018/04/18 13:30:27 [TRACE] root: eval: *terraform.EvalGetProvider
2018/04/18 13:30:27 [TRACE] root: eval: *terraform.EvalReadState
2018/04/18 13:30:27 [TRACE] root: eval: *terraform.EvalValidateResource
2018/04/18 13:30:27 [TRACE] root: eval: *terraform.EvalDiff
2018/04/18 13:30:27 [TRACE] root: eval: *terraform.EvalReadDiff
2018/04/18 13:30:27 [TRACE] root: eval: *terraform.EvalCompareDiff
2018/04/18 13:30:27 [TRACE] root: eval: *terraform.EvalGetProvider
2018/04/18 13:30:27 [TRACE] root: eval: *terraform.EvalReadState
2018/04/18 13:30:27 [TRACE] root: eval: *terraform.EvalApplyPre
2018/04/18 13:30:27 [TRACE] root: eval: *terraform.EvalApply
2018/04/18 13:30:27 [DEBUG] apply: oci_identity_compartment.demo_compartment: executing Apply
2018-04-18T13:30:29.274+0200 [DEBUG] plugin.terraform-provider-oci_v2.1.5.exe: 2018/04/18 13:30:29 [DEBUG] Waiting for state to become: [ACTIVE]
2018-04-18T13:30:29.435+0200 [DEBUG] plugin.terraform-provider-oci_v2.1.5.exe: 2018/04/18 13:30:29 [DEBUG] crud.BaseCrud.setState: state: "ACTIVE"
2018/04/18 13:30:29 [TRACE] root: eval: *terraform.EvalWriteState
2018/04/18 13:30:29 [TRACE] root: eval: *terraform.EvalApplyProvisioners
2018/04/18 13:30:29 [TRACE] root: eval: *terraform.EvalIf
2018/04/18 13:30:29 [TRACE] root: eval: *terraform.EvalWriteState
2018/04/18 13:30:29 [TRACE] root: eval: *terraform.EvalWriteDiff
2018/04/18 13:30:29 [TRACE] root: eval: *terraform.EvalApplyPost
2018/04/18 13:30:29 [TRACE] root: eval: *terraform.EvalUpdateStateHook
2018/04/18 13:30:29 [TRACE] Preserving existing state lineage "e3b750ab-1dc3-446f-83a2-ac292b4e838b"
2018/04/18 13:30:29 [TRACE] Preserving existing state lineage "e3b750ab-1dc3-446f-83a2-ac292b4e838b"
2018/04/18 13:30:29 [TRACE] Preserving existing state lineage "e3b750ab-1dc3-446f-83a2-ac292b4e838b"
2018/04/18 13:30:29 [TRACE] Preserving existing state lineage "e3b750ab-1dc3-446f-83a2-ac292b4e838b"
2018/04/18 13:30:29 [TRACE] [walkApply] Exiting eval tree: oci_identity_compartment.demo_compartment
2018/04/18 13:30:29 [TRACE] dag/walk: walking "oci_identity_policy.demo_policy"
2018/04/18 13:30:29 [TRACE] vertex 'root.oci_identity_policy.demo_policy': walking
2018/04/18 13:30:29 [TRACE] vertex 'root.oci_identity_policy.demo_policy': evaluating
2018/04/18 13:30:29 [TRACE] [walkApply] Entering eval tree: oci_identity_policy.demo_policy
2018/04/18 13:30:29 [TRACE] root: eval: *terraform.EvalSequence
2018/04/18 13:30:29 [TRACE] root: eval: *terraform.EvalInstanceInfo
2018/04/18 13:30:29 [TRACE] root: eval: *terraform.EvalReadDiff
2018/04/18 13:30:29 [TRACE] root: eval: *terraform.EvalIf
2018/04/18 13:30:29 [TRACE] root: eval: terraform.EvalNoop
2018/04/18 13:30:29 [TRACE] root: eval: *terraform.EvalIf
2018/04/18 13:30:29 [TRACE] root: eval: *terraform.EvalInterpolate
2018/04/18 13:30:29 [TRACE] root: eval: *terraform.EvalInterpolate
2018/04/18 13:30:29 [TRACE] dag/walk: walking "oci_identity_group.demo_group"
2018/04/18 13:30:29 [TRACE] vertex 'root.oci_identity_group.demo_group': walking
2018/04/18 13:30:29 [TRACE] root: eval: *terraform.EvalGetProvider
2018/04/18 13:30:29 [TRACE] root: eval: *terraform.EvalReadState
2018/04/18 13:30:29 [TRACE] root: eval: *terraform.EvalValidateResource
2018/04/18 13:30:29 [TRACE] vertex 'root.oci_identity_group.demo_group': evaluating
2018/04/18 13:30:29 [TRACE] [walkApply] Entering eval tree: oci_identity_group.demo_group
2018/04/18 13:30:29 [TRACE] root: eval: *terraform.EvalSequence
2018/04/18 13:30:29 [TRACE] root: eval: *terraform.EvalInstanceInfo
2018/04/18 13:30:29 [TRACE] root: eval: *terraform.EvalReadDiff
2018/04/18 13:30:29 [TRACE] root: eval: *terraform.EvalIf
2018/04/18 13:30:29 [TRACE] root: eval: terraform.EvalNoop
2018/04/18 13:30:29 [TRACE] root: eval: *terraform.EvalIf
2018/04/18 13:30:29 [TRACE] root: eval: *terraform.EvalInterpolate
2018/04/18 13:30:29 [TRACE] root: eval: *terraform.EvalInterpolate
2018/04/18 13:30:29 [TRACE] root: eval: *terraform.EvalGetProvider
2018/04/18 13:30:29 [TRACE] root: eval: *terraform.EvalReadState
2018/04/18 13:30:29 [TRACE] root: eval: *terraform.EvalValidateResource
2018/04/18 13:30:29 [TRACE] root: eval: *terraform.EvalDiff
2018/04/18 13:30:29 [TRACE] root: eval: *terraform.EvalDiff
2018/04/18 13:30:29 [TRACE] root: eval: *terraform.EvalReadDiff
2018/04/18 13:30:29 [TRACE] root: eval: *terraform.EvalCompareDiff
2018/04/18 13:30:29 [TRACE] root: eval: *terraform.EvalGetProvider
2018/04/18 13:30:29 [TRACE] root: eval: *terraform.EvalReadState
2018/04/18 13:30:29 [TRACE] root: eval: *terraform.EvalApplyPre
2018/04/18 13:30:29 [TRACE] root: eval: *terraform.EvalApply
2018/04/18 13:30:29 [DEBUG] apply: oci_identity_group.demo_group: executing Apply
2018/04/18 13:30:29 [TRACE] root: eval: *terraform.EvalReadDiff
2018/04/18 13:30:29 [TRACE] root: eval: *terraform.EvalCompareDiff
2018/04/18 13:30:29 [TRACE] root: eval: *terraform.EvalGetProvider
2018/04/18 13:30:29 [TRACE] root: eval: *terraform.EvalReadState
2018/04/18 13:30:29 [TRACE] root: eval: *terraform.EvalApplyPre
2018/04/18 13:30:29 [TRACE] root: eval: *terraform.EvalApply
2018/04/18 13:30:29 [DEBUG] apply: oci_identity_policy.demo_policy: executing Apply
2018-04-18T13:30:29.501+0200 [DEBUG] plugin.terraform-provider-oci_v2.1.5.exe: panic: interface conversion: interface {} is string, not common.SDKTime
2018-04-18T13:30:29.501+0200 [DEBUG] plugin.terraform-provider-oci_v2.1.5.exe:
2018-04-18T13:30:29.501+0200 [DEBUG] plugin.terraform-provider-oci_v2.1.5.exe: goroutine 72 [running]:
2018-04-18T13:30:29.501+0200 [DEBUG] plugin.terraform-provider-oci_v2.1.5.exe: github.com/oracle/terraform-provider-oci/provider.(*PolicyResourceCrud).Create(0xc0421953e0, 0x20, 0x20)
2018-04-18T13:30:29.501+0200 [DEBUG] plugin.terraform-provider-oci_v2.1.5.exe: /Users/rcohenma/GoglandProjects/src/github.com/oracle/terraform-provider-oci/provider/identity_policy_resource.go:198 +0x817
2018-04-18T13:30:29.501+0200 [DEBUG] plugin.terraform-provider-oci_v2.1.5.exe: github.com/oracle/terraform-provider-oci/crud.CreateResource(0xc042073500, 0x1457460, 0xc0421953e0, 0x70, 0xe9f460)
2018-04-18T13:30:29.501+0200 [DEBUG] plugin.terraform-provider-oci_v2.1.5.exe: /Users/rcohenma/GoglandProjects/src/github.com/oracle/terraform-provider-oci/crud/helpers.go:232 +0x50
2018-04-18T13:30:29.501+0200 [DEBUG] plugin.terraform-provider-oci_v2.1.5.exe: github.com/oracle/terraform-provider-oci/provider.createPolicy(0xc042073500, 0xcf1ee0, 0xc042191a40, 0x0, 0xc04226c088)
2018-04-18T13:30:29.501+0200 [DEBUG] plugin.terraform-provider-oci_v2.1.5.exe: /Users/rcohenma/GoglandProjects/src/github.com/oracle/terraform-provider-oci/provider/identity_policy_resource.go:106 +0xc0
2018-04-18T13:30:29.501+0200 [DEBUG] plugin.terraform-provider-oci_v2.1.5.exe: github.com/oracle/terraform-provider-oci/vendor/github.com/hashicorp/terraform/helper/schema.(*Resource).Apply(0xc0420141e0, 0xc042054ff0, 0xc0421953a0, 0xcf1ee0, 0xc042191a40, 0x1, 0x28, 0xc04233acc0)
2018-04-18T13:30:29.501+0200 [DEBUG] plugin.terraform-provider-oci_v2.1.5.exe: /Users/rcohenma/GoglandProjects/src/github.com/oracle/terraform-provider-oci/vendor/github.com/hashicorp/terraform/helper/schema/resource.go:186 +0x494
2018-04-18T13:30:29.501+0200 [DEBUG] plugin.terraform-provider-oci_v2.1.5.exe: github.com/oracle/terraform-provider-oci/vendor/github.com/hashicorp/terraform/helper/schema.(*Provider).Apply(0xc04208e9a0, 0xc042054fa0, 0xc042054ff0, 0xc0421953a0, 0x2050920, 0x0, 0xc0422ab1c0)
2018-04-18T13:30:29.501+0200 [DEBUG] plugin.terraform-provider-oci_v2.1.5.exe: /Users/rcohenma/GoglandProjects/src/github.com/oracle/terraform-provider-oci/vendor/github.com/hashicorp/terraform/helper/schema/provider.go:242 +0xa2
2018-04-18T13:30:29.501+0200 [DEBUG] plugin.terraform-provider-oci_v2.1.5.exe: github.com/oracle/terraform-provider-oci/vendor/github.com/hashicorp/terraform/plugin.(*ResourceProviderServer).Apply(0xc0422aad00, 0xc042195300, 0xc0421307b0, 0x0, 0x0)
2018-04-18T13:30:29.501+0200 [DEBUG] plugin.terraform-provider-oci_v2.1.5.exe: /Users/rcohenma/GoglandProjects/src/github.com/oracle/terraform-provider-oci/vendor/github.com/hashicorp/terraform/plugin/resource_provider.go:488 +0x5e
2018-04-18T13:30:29.501+0200 [DEBUG] plugin.terraform-provider-oci_v2.1.5.exe: reflect.Value.call(0xc0422a43c0, 0xc042050008, 0x13, 0xec202c, 0x4, 0xc0421e5f20, 0x3, 0x3, 0x0, 0xffffffffffffffff, ...)
2018-04-18T13:30:29.501+0200 [DEBUG] plugin.terraform-provider-oci_v2.1.5.exe: /usr/local/go/src/reflect/value.go:434 +0x926
2018-04-18T13:30:29.501+0200 [DEBUG] plugin.terraform-provider-oci_v2.1.5.exe: reflect.Value.Call(0xc0422a43c0, 0xc042050008, 0x13, 0xc0421e5f20, 0x3, 0x3, 0x0, 0xc04200a340, 0xc04233a030)
2018-04-18T13:30:29.501+0200 [DEBUG] plugin.terraform-provider-oci_v2.1.5.exe: /usr/local/go/src/reflect/value.go:302 +0xab
2018-04-18T13:30:29.501+0200 [DEBUG] plugin.terraform-provider-oci_v2.1.5.exe: net/rpc.(*service).call(0xc04200a440, 0xc04200a340, 0xc042334078, 0xc042052180, 0xc0420d7840, 0xcf38a0, 0xc042195300, 0x16, 0xcf38e0, 0xc0421307b0, ...)
2018-04-18T13:30:29.501+0200 [DEBUG] plugin.terraform-provider-oci_v2.1.5.exe: /usr/local/go/src/net/rpc/server.go:387 +0x14b
2018-04-18T13:30:29.501+0200 [DEBUG] plugin.terraform-provider-oci_v2.1.5.exe: created by net/rpc.(*Server).ServeCodec
2018-04-18T13:30:29.501+0200 [DEBUG] plugin.terraform-provider-oci_v2.1.5.exe: /usr/local/go/src/net/rpc/server.go:481 +0x40b
2018/04/18 13:30:29 [TRACE] root: eval: *terraform.EvalWriteState
2018/04/18 13:30:29 [TRACE] root: eval: *terraform.EvalApplyProvisioners
2018/04/18 13:30:29 [TRACE] root: eval: *terraform.EvalIf
2018/04/18 13:30:29 [TRACE] root: eval: *terraform.EvalWriteState
2018/04/18 13:30:29 [TRACE] root: eval: *terraform.EvalWriteDiff
2018/04/18 13:30:29 [TRACE] root: eval: *terraform.EvalApplyPost
2018/04/18 13:30:29 [ERROR] root: eval: *terraform.EvalApplyPost, err: 1 error(s) occurred:

  • oci_identity_policy.demo_policy: unexpected EOF
    2018/04/18 13:30:29 [ERROR] root: eval: *terraform.EvalSequence, err: 1 error(s) occurred:

  • oci_identity_policy.demo_policy: unexpected EOF
    2018/04/18 13:30:29 [TRACE] [walkApply] Exiting eval tree: oci_identity_policy.demo_policy
    2018/04/18 13:30:29 [TRACE] root: eval: *terraform.EvalWriteState
    2018/04/18 13:30:29 [TRACE] root: eval: *terraform.EvalApplyProvisioners
    2018/04/18 13:30:29 [TRACE] root: eval: *terraform.EvalIf
    2018/04/18 13:30:29 [TRACE] root: eval: *terraform.EvalWriteState
    2018/04/18 13:30:29 [TRACE] root: eval: *terraform.EvalWriteDiff
    2018/04/18 13:30:29 [TRACE] root: eval: *terraform.EvalApplyPost
    2018/04/18 13:30:29 [ERROR] root: eval: *terraform.EvalApplyPost, err: 1 error(s) occurred:

  • oci_identity_group.demo_group: unexpected EOF
    2018/04/18 13:30:29 [ERROR] root: eval: *terraform.EvalSequence, err: 1 error(s) occurred:

  • oci_identity_group.demo_group: unexpected EOF
    2018/04/18 13:30:29 [TRACE] [walkApply] Exiting eval tree: oci_identity_group.demo_group
    2018/04/18 13:30:29 [TRACE] dag/walk: upstream errored, not walking "provider.oci (close)"
    2018/04/18 13:30:29 [TRACE] dag/walk: upstream errored, not walking "meta.count-boundary (count boundary fixup)"
    2018/04/18 13:30:29 [TRACE] dag/walk: upstream errored, not walking "root"
    2018/04/18 13:30:29 [TRACE] Preserving existing state lineage "e3b750ab-1dc3-446f-83a2-ac292b4e838b"
    2018/04/18 13:30:29 [TRACE] Preserving existing state lineage "e3b750ab-1dc3-446f-83a2-ac292b4e838b"
    2018/04/18 13:30:29 [TRACE] Preserving existing state lineage "e3b750ab-1dc3-446f-83a2-ac292b4e838b"
    2018/04/18 13:30:29 [DEBUG] plugin: waiting for all plugin processes to complete...
    2018-04-18T13:30:29.524+0200 [WARN ] plugin: error closing client during Kill: err="connection is shut down"
    2018-04-18T13:30:29.527+0200 [DEBUG] plugin: plugin process exited: path=c:\terraform\terraform-provider-oci_v2.1.5.exe

@codycushing
Copy link
Contributor

Thanks for bringing this to our attention. There is a type coercion defect for the policy version_date field that we will fix with the next release. In the meantime, don't specify the policy version_date when creating the resource and you should not encounter the failure.

@llBIKSll
Copy link
Author

Thanks - I will take out the policy part.

@codycushing
Copy link
Contributor

Policy resource version_date issue fixed with v2.1.6

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Projects
None yet
Development

No branches or pull requests

2 participants